# partner-logos-styling
> This skill should be used when the user asks to "add partner logos", "style client logos", "make logos uniform", "add company logos section", "trusted by logos", or needs to display multiple brand logos in a consistent, professional style on light or dark backgrounds.
- Author: yusufesntrk
- Repository: yusufesntrk/searched-website
- Version: 20251224112704
- Stars: 0
- Forks: 0
- Last Updated: 2026-02-07
- Source: https://github.com/yusufesntrk/searched-website
- Web: https://mule.run/skillshub/@@yusufesntrk/searched-website~partner-logos-styling:20251224112704
---
---
name: partner-logos-styling
description: This skill should be used when the user asks to "add partner logos", "style client logos", "make logos uniform", "add company logos section", "trusted by logos", or needs to display multiple brand logos in a consistent, professional style on light or dark backgrounds.
---
# Partner Logos Styling
Pattern für einheitliche Darstellung von Partner-/Kundenlogos in "Trusted by" oder "Our Clients" Sektionen.
## Das Problem
Firmenlogos haben unterschiedliche:
- Farben (bunt, einfarbig, dunkel, hell)
- Formate (PNG, SVG, mit/ohne Transparenz)
- Größen und Proportionen
Ohne Vereinheitlichung wirkt die Logo-Sektion chaotisch und unprofessionell.
## Die Lösung: CSS Filter
### Variante 1: Schwarze Logos (für helle Hintergründe)
```tsx
```
`brightness-0` macht jedes Logo komplett schwarz - unabhängig von der Originalfarbe.
### Variante 2: Weiße Logos (für dunkle Hintergründe)
```tsx
```
`brightness-0 invert` macht Logos erst schwarz, dann invertiert zu weiß.
### Variante 3: Corporate Color (z.B. Blau)
```tsx
```
Für spezifische Markenfarben den Filter mit einem Tool wie [CSS Filter Generator](https://codepen.io/sosuke/pen/Pjoqqp) generieren.
## Vollständiges Komponenten-Pattern
```tsx
const PartnerLogos = () => {
const partners = [
{ name: "Company A", logo: "/logos/company-a.png" },
{ name: "Company B", logo: "/logos/company-b.svg" },
{ name: "Company C", initials: "C" }, // Fallback ohne Logo
];
return (