Files
Nomarchy/themes/palettes/retro-82/colors.toml
Bernardo Magri bbdf34ced8 refactor: implement component-based architecture for enhanced maintainability
- Reorganize directory structure into core/, features/, and themes/
- Colocate application Nix logic, configs, scripts, and theme overrides
- Implement 'Inversion of Control' for theming: apps now pull theme-specific layouts
- Update flake.nix and shared library paths to match the new structure
- Document the new Feature-Centric architecture in README.md
2026-04-12 14:51:15 +01:00

36 lines
661 B
TOML

# Accent and UI colors
accent = "#faa968"
active_border_color = "#faa968"
active_tab_background = "#faa968"
# Cursor colors
cursor = "#f6dcac"
# Primary colors
foreground = "#f6dcac"
background = "#05182e"
# Selection colors
selection_foreground = "#00172e"
selection_background = "#faa968"
# Normal colors (ANSI 0-7)
color0 = "#00172e"
color1 = "#f85525"
color2 = "#028391"
color3 = "#e97b3c"
color4 = "#faa968"
color5 = "#3f8f8a"
color6 = "#8cbfb8"
color7 = "#a7c9c6"
# Bright colors (ANSI 8-15)
color8 = "#134e5a"
color9 = "#f85525"
color10 = "#028391"
color11 = "#e97b3c"
color12 = "#faa968"
color13 = "#3f8f8a"
color14 = "#8cbfb8"
color15 = "#f6dcac"