omarchy-theme-maker

omarchy-theme-maker is a skill for Claude Code, Codex from asimons81/hermes-field-kit. It costs 49 tokens per session (1,151 once invoked), scanned A, original, Apache-2.0.

A desktop theming tool for Omarchy, a Linux desktop environment, that builds a color palette from a wallpaper or photo and applies it as a theme.

In plain words
What is it for?
Use it to create an Omarchy theme from an image, set the image as the background, and apply the resulting theme.
Why use it?
It avoids choosing desktop colors by hand and checks that important colors have enough contrast for readability. It only works with Omarchy.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create an Omarchy theme from an image, set the image as the background, and apply the resulting theme.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/asimons81/hermes-field-kit/omarchy-theme-maker
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add asimons81/hermes-field-kit --skill omarchy-theme-maker
Clone the repo
git clone --depth 1 https://github.com/asimons81/hermes-field-kit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for omarchy-theme-maker

README.md
[![agentmods](https://agentmods.dev/badge/skills/asimons81/hermes-field-kit/omarchy-theme-maker/github.svg)](https://agentmods.dev/skills/asimons81/hermes-field-kit/omarchy-theme-maker)
Your own site
<a href="https://agentmods.dev/skills/asimons81/hermes-field-kit/omarchy-theme-maker"><img src="https://agentmods.dev/badge/skills/asimons81/hermes-field-kit/omarchy-theme-maker/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for omarchy-theme-maker

Your own site · 80×15
<a href="https://agentmods.dev/skills/asimons81/hermes-field-kit/omarchy-theme-maker"><img src="https://agentmods.dev/badge/skills/asimons81/hermes-field-kit/omarchy-theme-maker.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,151 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.01151
Opus 5 $0.00024 $0.00575
Sonnet 5 $0.00010 $0.00230
Haiku 4.5 $0.00005 $0.00115

Measured today against content hash 587fe4ba40cc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

omarchy-theme-maker scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/palette_to_theme.py, tests/test_contracts.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/omarchy-theme-maker/SKILL.md · 98 lines

How it starts

The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.

omarchy-theme-maker

Overview

Builds a complete Omarchy user theme from a single image. The bundled script extracts dominant colors via median-cut quantization, decides dark or light mode from saturation-weighted lightness, emits a colors.toml using the canonical Omarchy palette keys calibrated against the stock tokyo-night (dark) and catppuccin-latte (light) ramps, enforces WCAG contrast floors on accent and named colors, and installs the image as the theme background.

The skill never edits stock themes under /usr/share/omarchy/ and never writes outside ~/.config/omarchy/themes/<slug>/. It does not theme non- Omarchy desktops and does not cover general Omarchy configuration.

When to Use

  • "Make an Omarchy theme from this image/wallpaper/photo."
  • "Theme my desktop to match this artwork."
  • "Build a custom Omarchy palette named with this background."

Counter-triggers — do not load this skill when:

  • The target desktop is not Omarchy (generic Hyprland, GNOME, KDE theming).
  • The user wants to tweak a stock theme's colors by hand rather than derive from an image.
  • The task is general Omarchy configuration (bars, keybindings, monitors); that belongs to a general Omarchy skill, not this one.

Workflow

  1. Verify prerequisites: omarchy version succeeds and python3 -c "import PIL" succeeds (Pillow is the only dependency).
  2. Locate the source image locally. If given a URL, download it to a temporary directory first.
  3. Dry-run the generator with --print and read the emitted palette: python3 <skill-root>/scripts/palette_to_theme.py IMAGE --name "Name" --print.
  4. Check the reported mode and contrast lines. If the image is busy or mixed-brightness and auto mode picked wrong, rerun with --mode dark or --mode light.
  5. Write the theme for real (same command without --print). Confirm the script created ~/.config/omarchy/themes/<slug>/colors.toml and backgrounds/<image> and refused to clobber an existing colors.toml unless --force was passed.
  6. Offer the user the palette for review; apply only when the user asks: omarchy theme set <slug>.
  7. Verify: omarchy theme current prints the new theme name and the active background symlink points at the staged image.

Read the full file on GitHub · 98 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 98 lines · 49 tokens per session scan A 587fe4ba40cc

Subscribe to this mod's changes

omarchy-theme-maker is a skill published in the GitHub repository asimons81/hermes-field-kit (125 stars, last pushed yesterday), licensed Apache-2.0. It adds 49 tokens to every session and 1,151 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-10.

Related

Other skills, from other repositories

visualize

Render a polished visual inline in the chat as part of your answer — a diagram, a chart, an interactive explainer, or a UI mockup. Load it proactively whenever an explanation would land better as a picture than as prose. Do not wait to be asked.

vellum-ai/vellum-assistant · 57 tokens

vellum-workspace-theme

Customize the app's visual theme — author design-token overrides (accent, background, surfaces, text, message-bubble colors) in the workspace ui/theme.json, validated by the assistant runtime and applied live to connected clients. Covers the token slots, the all-or-none override groups, the contrast floor, and reading…

vellum-ai/vellum-assistant · 72 tokens

vellum-avatar

Customize the assistant's avatar - build a native character, upload an image, or generate one with AI.

vellum-ai/vellum-assistant · 24 tokens

shieldcn-badges

Create polished shieldcn README badges, badge groups, charts, headers, sponsors grids, and full README hero sections. Use when a user wants shadcn/ui-styled badges, Shields.io replacement, npm/GitHub/CI/status badges, download charts, README header banners, contributor/sponsor images, or README Studio guidance.…

jal-co/shieldcn · 145 tokens

openscreen-design

Use this skill to generate well-branded interfaces and assets for OpenScreen (an AI-native screen-recording studio & video editor), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.

getopenscreen/openscreen · 62 tokens

figma-expert

Figma design expert for components, auto-layout, design systems, and developer handoff.

RightNow-AI/openfang · 22 tokens