Logo Directory Structure¶
This directory contains all logo variants organized by name, theme, and layout.
Structure¶
logos/
├── company/ # Company logos
│ ├── light/ # Light theme variants
│ │ ├── inline.png # Horizontal layout with text
│ │ ├── stacked.png # Vertical layout with text
│ │ └── without-text.png # Logo icon only (mobile)
│ └── dark/ # Dark theme variants
│ ├── inline.png # Horizontal layout with text
│ ├── stacked.png # Vertical layout with text
│ └── without-text.png # Logo icon only (mobile)
└── product/ # Product-specific logos
├── light/
│ ├── inline.png
│ ├── stacked.png
│ └── without-text.png
└── dark/
├── inline.png
├── stacked.png
└── without-text.png
Logo Variants¶
- inline: Horizontal layout with text beside the logo
- stacked: Vertical layout with text below the logo
- without-text: Icon only, primarily used for mobile devices
Theme Support¶
- light: Logos optimized for light backgrounds
- dark: Logos optimized for dark backgrounds (default)
Adding New Logos¶
- Create a new directory with the logo name
- Add
lightanddarksubdirectories - Place the three variants (inline, stacked, without-text) in each theme directory
- Update the
LogoNametype in the Logo component
File Format¶
All logos should be in PNG format for optimal quality and transparency support.