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

name: dark-mode-gen description: Add dark mode support to components. Use when implementing dark theme.
Dark Mode Generator
Adding dark mode means updating every component with CSS variables or Tailwind dark: prefixes. This tool does it automatically for single files or entire directories.
One command. Zero config. Just works.
Quick Start
npx ai-dark-mode ./src/components/Card.tsx
What It Does
- Adds dark mode styles to React components
- Works with CSS variables, Tailwind, or styled-components
- Handles prefers-color-scheme media queries
- Preserves existing styles and structure
Usage Examples
# Single component
npx ai-dark-mode ./src/components/Card.tsx
# Entire directory
npx ai-dark-mode ./src/components/
# Preview before writing
npx ai-dark-mode ./src/components/Card.tsx --dry-run
Best Practices
- Use CSS variables - easier to maintain than hardcoded colors
- Test both modes - make sure contrast is good in both
- Don't forget images - some graphics need light/dark variants
- Respect system preference - use prefers-color-scheme
When to Use This
- Adding dark mode to an existing project
- Converting components that only have light styles
- Standardizing dark mode implementation across files
- Quick prototyping with dark mode support
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://lxgicstudios.com
Requirements
No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.
npx ai-dark-mode --help
How It Works
Reads your component files, identifies color definitions and styles, then adds appropriate dark mode variants. For Tailwind it adds dark: prefixes. For CSS it uses CSS variables with prefers-color-scheme.
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. Needs OPENAI_API_KEY environment variable. ```bash npx ai-dark-mode --help ```
FAQ
How do I install dark-mode-gen?
Run openclaw add @lxgicstudios/dark-mode-gen in your terminal. This installs dark-mode-gen 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-gen. Review commits and README documentation before installing.
