2.5k★by lxgicstudios
dark-mode – OpenClaw Skill
dark-mode is an OpenClaw Skills integration for coding workflows. Add dark mode support to components using AI. Use when building theme toggles or retrofitting dark mode.
Skill Snapshot
| name | dark-mode |
| description | Add dark mode support to components using AI. Use when building theme toggles or retrofitting dark mode. OpenClaw Skills integration. |
| owner | lxgicstudios |
| repository | lxgicstudios/dark-mode |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lxgicstudios/dark-mode |
| last updated | Feb 7, 2026 |
Maintainer

name: dark-mode description: Add dark mode support to components using AI. Use when building theme toggles or retrofitting dark mode.
Dark Mode Generator
Tired of manually writing dark mode variants? This tool scans your components and generates the CSS or Tailwind classes you need. Point it at a file, get dark mode support back. No overthinking required.
One command. Zero config. Just works.
Quick Start
npx ai-dark-mode ./src/components/Button.tsx
What It Does
- Analyzes your component's existing styles and color usage
- Generates matching dark mode variants that actually look good
- Works with plain CSS, Tailwind, or CSS-in-JS
- Outputs clean, copy-paste ready code
- Respects your existing design system colors
Usage Examples
# Generate dark mode for a single component
npx ai-dark-mode ./src/components/Card.tsx
# Process an entire directory
npx ai-dark-mode ./src/components/ --recursive
# Output Tailwind dark: classes
npx ai-dark-mode ./src/Button.tsx --format tailwind
# Generate CSS custom properties
npx ai-dark-mode ./src/styles/main.css --format css-vars
Best Practices
- Start with your design tokens - If you have a color palette defined, the AI will reference it for consistent results
- Review contrast ratios - The tool tries to maintain readability but always double check accessibility
- Test in both modes - Generated styles are smart but not perfect. Toggle between modes to catch edge cases
- Keep backgrounds in mind - Dark mode isn't just inverting colors. Think about elevation and depth
When to Use This
- You inherited a codebase with no dark mode and need to add it fast
- Building a new component and want dark variants from the start
- Converting a design system to support theme switching
- Quick prototyping where you want both modes without manual work
Part of the LXGIC Dev Toolkit
This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.
Find more:
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Substack: https://lxgicstudios.substack.com
- Website: https://lxgic.dev
Requirements
No install needed. Just run with npx. Node.js 18+ recommended.
npx ai-dark-mode --help
How It Works
The tool parses your component file, extracts color values and style definitions, then uses AI to generate semantically appropriate dark mode alternatives. It understands that light backgrounds become dark, text colors flip for contrast, and subtle grays need careful adjustment.
License
MIT. Free forever. Use it however you want.
ai-dark-mode
Add dark mode support to any component or entire directory. Handles CSS variables, Tailwind dark: prefixes, and prefers-color-scheme.
Install
npm install -g ai-dark-mode
Usage
npx ai-dark-mode ./src/components/Card.tsx
# Adds dark mode to a single file
npx ai-dark-mode ./src/components/
# Adds dark mode to all components in a directory
npx ai-dark-mode ./src/components/Card.tsx --dry-run
# Preview without writing
Setup
export OPENAI_API_KEY=sk-...
Options
--dry-run- Print result without writing to disk
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
No install needed. Just run with npx. Node.js 18+ recommended. ```bash npx ai-dark-mode --help ```
FAQ
How do I install dark-mode?
Run openclaw add @lxgicstudios/dark-mode in your terminal. This installs dark-mode into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/dark-mode. Review commits and README documentation before installing.
