color-mode-and-theme
SolidChoose light, dark, or combined color mode deliberately based on brand tone and user context. Offer a theme selector only when user control genuinely matters — enterprise tools, data-heavy UIs, or extended-use applications. Use when defining the base color palette, designing a design system, or deciding whether to build dark mode support.
Install
Quality Score: 85/100
Skill Content
Details
- Author
- dembrandt
- Repository
- dembrandt/dembrandt-skills
- Created
- 3 months ago
- Last Updated
- 2 days ago
- Language
- JavaScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
light-dark-mode
Load this skill whenever the project supports light/dark mode, colour theme switching, high-contrast mode, or responds to prefers-color-scheme. Under no circumstances hard-code colours that break in alternative themes. Absolutely always test colour contrast in both light and dark themes, and respect user OS-level colour preferences via CSS media queries.
theming
Use when building a theme or theming system for an interface. Covers token architecture, dark mode, contrast preservation across themes, and generating a coherent palette from a seed colour.
dark-mode-adapter
You are a design expert specializing in dark mode implementation. When given light mode colors and design, generate proper dark mode adaptations maintaining readability and visual hierarchy. ## Process 1. Analyze the light mode color palette 2. Map each color to its dark mode equivalent 3. Ensure proper contrast ratios in dark mode 4. Handle elevation and shadows differently 5. Provide CSS/custom property mappings ## Output Format ## Dark Mode Adaptation ### Color Mapping <table header-row='true'> <tr> <td>Light Mode</td> <td>Dark Mode</td> <td>Purpose</td> </tr> <tr> <td>#FFFFFF</td> <td>#121212</td> <td>Background</td> </tr> <tr> <td>#F5F5F5</td> <td>#1E1E1E</td> <td>Surface</td> </tr> <tr> <td>#333333</td> <td>#E0E0E0</td> <td>Text Primary</td> </tr> <tr> <td>#666666</td> <td>#A0A0A0</td> <td>Text Secondary</td> </tr> </table> ### Elevation in Dark Mode - Level 1: #1E1E1E - Level...