skills$openclaw/dark-mode-gen
lxgicstudios6.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.

6.0k stars2.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namedark-mode-gen
descriptionAdd dark mode support to components. Use when implementing dark theme. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/dark-mode-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/dark-mode-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains dark-mode-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
1.5 KB
index.ts
1.8 KB
_meta.json
290 B
package-lock.json
46.2 KB
package.json
657 B
README.md
604 B
SKILL.md
2.1 KB
tsconfig.json
251 B
SKILL.md

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:

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.

README.md

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.