- Integrated Zsh cockpit theme with radar/AAR logic. - Added Kitty terminal configuration mirroring system DNA. - Added Alacritty TOML template for semantic color mapping. - Updated GEMINI.md repository map.
67 lines
1.9 KiB
Django/Jinja
67 lines
1.9 KiB
Django/Jinja
## {{ scheme | upper }} - KITTY THEME ##
|
||
## Spec-accurate: color = state, not decoration
|
||
|
||
# --- Core ---
|
||
foreground {{ palette.foreground }}
|
||
background {{ palette.background }}
|
||
|
||
# Selection: "target locked"
|
||
selection_background {{ palette.selection }}
|
||
selection_foreground {{ palette.selection_fg }}
|
||
|
||
# Cursor: Razor Red beam
|
||
cursor {{ palette.cursor }}
|
||
cursor_text_color {{ palette.selection_fg }}
|
||
cursor_shape beam
|
||
|
||
# URLs: informational cyan
|
||
url_color {{ palette.info }}
|
||
|
||
# Borders (optional)
|
||
active_border_color {{ palette.cursor }}
|
||
inactive_border_color {{ ui.border }}
|
||
|
||
# Optional: subtle UI hint for visual bell
|
||
visual_bell_color {{ ansi.bright.red }}
|
||
|
||
# Spacing
|
||
window_padding_width 4
|
||
|
||
# --- 16-COLOR ANSI TABLE ({{ scheme }} spec) ---
|
||
|
||
# Normal bank (0–7)
|
||
# color0: Black (Void)
|
||
color0 {{ ansi.normal.black }}
|
||
# color1: Red (Razor)
|
||
color1 {{ ansi.normal.red }}
|
||
# color2: Green (OK)
|
||
color2 {{ ansi.normal.green }}
|
||
# color3: Yellow (Gold)
|
||
color3 {{ ansi.normal.yellow }}
|
||
# color4: Blue (Info)
|
||
color4 {{ ansi.normal.blue }}
|
||
# color5: Magenta (Purple)
|
||
color5 {{ ansi.normal.magenta }}
|
||
# color6: Cyan (Info mapped)
|
||
color6 {{ ansi.normal.cyan }}
|
||
# color7: White (Stark)
|
||
color7 {{ ansi.normal.white }}
|
||
|
||
# Bright bank (8–15)
|
||
# color8: Bright black (UI separators)
|
||
color8 {{ ansi.bright.black }}
|
||
# color9: Bright red (Alerts)
|
||
color9 {{ ansi.bright.red }}
|
||
# color10: Bright green (Active success)
|
||
color10 {{ ansi.bright.green }}
|
||
# color11: Bright yellow (Urgent warning)
|
||
color11 {{ ansi.bright.yellow }}
|
||
# color12: Bright blue (Active info)
|
||
color12 {{ ansi.bright.blue }}
|
||
# color13: Bright magenta (Elevated special)
|
||
color13 {{ ansi.bright.magenta }}
|
||
# color14: Bright cyan (Active tech signal)
|
||
color14 {{ ansi.bright.cyan }}
|
||
# color15: Bright white (Extreme highlight)
|
||
color15 {{ ansi.bright.white }}
|