Files
apex/templates/kitty/apex.conf.j2
s0wlz (Matthias Puchstein) b4b7316d52 feat: add templates for Zsh, Kitty, and Alacritty
- 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.
2025-12-30 04:39:26 +01:00

67 lines
1.9 KiB
Django/Jinja
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## {{ 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 (07)
# 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 (815)
# 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 }}