원클릭으로
ui-design
Guidelines for the Sonic Glitch design system, theme variables, and multi-theme readability (dark, light, high-contrast)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for the Sonic Glitch design system, theme variables, and multi-theme readability (dark, light, high-contrast)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Experimental protocol for Deep Cuts research, prototypes, model evaluations, threshold tuning, ablations, metric comparisons, and claims about accuracy or quality. Use before running or interpreting experiments so bots preserve train/validation/test boundaries, avoid leakage, compare against baselines, and report results honestly.
Guidelines for creating, updating, reorganizing, and reviewing Deep Cuts documentation in the project wiki, including page taxonomy, lifecycle status, protected pages, proposal handling, and link verification.
Pattern for multi-agent collaboration sessions in the deep-cuts fam — forge-first coordination over the botfam substrate (Gitea issues/PRs as the coordination plane, the unified `botfam wait` wake loop, bare-actor worktrees), with IRC opt-in for design sprints, plus session-log conventions
Draft, structure, and finalize a Deep Cuts blog-series post so it conforms to the post template, house voice, and cross-post link rules. Use when writing, drafting, assembling, or editing a "Deep Cuts" blog post (the rlupi.com series), preparing a post for publishing, or adding front matter to one. Covers the template, front matter schema, voice, agent crediting, and the link linter.
Checklist and guide for adding a new analysis pass to the trait-based modular pipeline
Safe pattern for adding SQLite schema migrations in the deep-cuts Rust/rusqlite_migration stack
| name | ui-design |
| description | Guidelines for the Sonic Glitch design system, theme variables, and multi-theme readability (dark, light, high-contrast) |
This document outlines the design conventions for the Deep Cuts desktop application. All frontend components must adhere to these guidelines to ensure consistent visual aesthetics, clean code, and accessibility across all themes.
Deep Cuts uses custom CSS variables starting with --sg- for layout, colors, effects, and typography. Never hardcode hex, RGB, RGBA, or HSL values directly in components. Always use the design system tokens or derive from them with color-mix().
var(--sg-surface), var(--sg-surface-dim), var(--sg-surface-low), var(--sg-surface-container), var(--sg-surface-slate).var(--sg-on-surface): Primary text / high emphasis.var(--sg-on-surface-variant): Secondary text / medium emphasis.var(--sg-on-surface-muted): Timestamps, captions, low emphasis.var(--sg-primary): Cyber Cyan (used for active interactive states, filters).var(--sg-secondary): Studio Pink (used for AI-generated metadata, vibes, descriptions).var(--sg-error): Red (errors, warnings, silence flags).var(--sg-success): Green/teal (success indicators).var(--sg-warning): Yellow/amber (warnings, notice highlights).The app supports three themes (Dark, Light, and Accessible High Contrast) configured via the html[data-theme] attribute. When implementing UI features, ensure they render beautifully and legibility is maintained under each:
html[data-theme="dark"] - Default)html[data-theme="light"])--sg-ambient-bg: none).html[data-theme="accessible"])#000000 background, pure white #ffffff or near-white text).--sg-transition: none).If you must define new component-specific styling (such as badges, specialized borders, or custom list rows):
color: red; or a hardcoded hex color. Instead, use:
.silence-badge {
color: var(--sg-error);
background: color-mix(in srgb, var(--sg-error) 8%, transparent);
border: 1px solid color-mix(in srgb, var(--sg-error) 30%, transparent);
}
html[data-theme="accessible"] .silence-badge {
border-radius: 0;
border: 2px solid var(--sg-on-surface) !important;
background: var(--sg-surface) !important;
color: var(--sg-on-surface) !important;
}
var(--sg-font-ui) (Inter / system font).var(--sg-font-mono) (JetBrains Mono).Before finishing UI work:
#, rgb(, rgba(, and inline style="color.getComputedStyle() instead of duplicating literals in TypeScript.skills/ui-debug/SKILL.md for browser verification.invoke/listen calls must come from $lib/ipc, not directly from @tauri-apps/api/*. See skills/svelte-component/SKILL.md §"IPC access".initialized flag, retain unlisten handles, and expose a dispose(). See skills/svelte-component/SKILL.md §"Tauri event listeners in components".