Back to list
krazyuniks

frontend-design

by krazyuniks

Automating NAM signal chain comparison videos

0🍴 0📅 Jan 25, 2026

SKILL.md


name: frontend-design description: Visual design for Guitar Tone Shootout - design tokens, colors, typography, component patterns, and aesthetic principles. Use for UI decisions and styling.

Frontend Design

Activation: design, colors, theme, styling, tokens, UI, visual, dark mode, component style

Full Reference: Wiki: Design/Style-Guide


Design Direction

  • Aesthetic: Professional audio tool (Quad Cortex / DAW inspired)
  • Theme: Dark primary
  • Target: Musicians, audio engineers, content creators
  • Font: Inter (project standard)

Unified Design Token Architecture

Design tokens are defined once in astro/src/styles/global.css. The Astro build compiles this CSS and generates a Jinja2 wrapper template that includes the compiled stylesheet.

Single source of truth:

astro/src/styles/global.css (define tokens here)
    |
    v (Astro build)
astro/dist/_astro/main.[hash].css (compiled CSS)
    |
    v (included by wrapper)
Both static (Astro) and dynamic (Jinja2) pages

All pages share the same compiled CSS. Static Astro pages and dynamic Jinja2 templates both use identical design tokens through the same stylesheet.

Usage in Templates

Jinja2 templates:

<div class="bg-bg-elevated text-text-primary rounded-lg p-4">
  <h3 class="text-accent-primary font-semibold">{{ item.name }}</h3>
</div>

Astro/React components:

<div className="bg-bg-elevated text-text-primary rounded-lg p-4">
  <h3 className="text-accent-primary font-semibold">{item.name}</h3>
</div>

CSS custom property syntax (when needed):

<div style="background-color: var(--color-bg-elevated);">

Design Tokens

Background Layers

Three-tier surface system for depth and hierarchy:

TokenValueUse
--color-bg-base#0a0a0aPage background
--color-bg-surface#141414Cards, panels
--color-bg-elevated#1f1f1fModals, dropdowns, hover states

Tailwind classes: bg-bg-base, bg-bg-surface, bg-bg-elevated

Text Colors

TokenValueUse
--color-text-primary#ffffffPrimary text, headings
--color-text-secondary#a1a1a1Secondary text, labels
--color-text-muted#666666Disabled, placeholder text

Tailwind classes: text-text-primary, text-text-secondary, text-text-muted

Accent Colors

TokenValueUse
--color-accent-primary#3b82f6Blue - CTAs, links
--color-accent-success#22c55eGreen - success states
--color-accent-warning#f59e0bAmber - warnings
--color-accent-error#ef4444Red - errors, destructive

Tailwind classes: text-accent-primary, bg-accent-success, border-accent-warning, etc.

Block Type Colors

Signal chain component identification:

TokenValueUse
--color-block-di#3b82f6Blue - DI/Input blocks
--color-block-amp#f59e0bAmber - Amp/NAM blocks
--color-block-cab#22c55eGreen - Cabinet/IR blocks
--color-block-effect#a855f7Purple - Pre-amp pedals
--color-block-post-effect#06b6d4Cyan - Post-amp effects

Tailwind classes: bg-block-di, border-block-amp, text-block-effect, etc.

Typography

UseClassSpec
Bodytext-base font-normal16px, 400
Headingtext-2xl font-semibold24px, 600
Captiontext-xs font-medium12px, 500
Monofont-monoJetBrains Mono

Font families:

  • --font-sans: Inter
  • --font-mono: JetBrains Mono

Component Patterns

Card:

<div class="bg-bg-surface border border-[#333333] rounded-lg p-4
            hover:bg-bg-elevated transition-colors">

Button:

<button class="px-4 py-2 bg-accent-primary text-white rounded-md font-medium
               hover:bg-blue-700 disabled:opacity-50">

Block Card (signal chain blocks):

const blockStyles = {
  di:          { border: 'border-block-di/50',          bg: 'bg-block-di/10' },
  amp:         { border: 'border-block-amp/50',         bg: 'bg-block-amp/10' },
  cab:         { border: 'border-block-cab/50',         bg: 'bg-block-cab/10' },
  effect:      { border: 'border-block-effect/50',      bg: 'bg-block-effect/10' },
  postEffect:  { border: 'border-block-post-effect/50', bg: 'bg-block-post-effect/10' },
};

Aesthetic Principles

Do

  • Intentional choices - Bold maximalism and refined minimalism both work
  • Dominant colors with sharp accents - Not timid, evenly-distributed palettes
  • Atmosphere and depth - Gradients, textures, layered transparencies
  • Purposeful motion - High-impact moments over scattered micro-interactions

Avoid ("AI Slop")

  • Overused fonts without character
  • Cliched color schemes (purple gradients on white)
  • Predictable layouts and component patterns
  • Cookie-cutter design lacking context-specific character

Full Documentation

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon