applied colors

This commit is contained in:
kenji
2025-12-24 21:58:12 -06:00
parent aa7e045303
commit 00ea547c8d
7 changed files with 35 additions and 20 deletions
+14 -11
View File
@@ -1,4 +1,4 @@
{
{config, ...}: {
programs.starship = {
enable = true;
settings = {
@@ -8,17 +8,20 @@
$character'';
# Palette definition (Catppuccin Mocha-inspired)
palette = "pro_theme";
palettes.pro_theme = {
surface0 = "#313244";
surface1 = "#45475a";
text = "#cdd6f4";
peach = "#fab387";
sapphire = "#74c7ec";
lavender = "#b4befe";
green = "#a6e3a1";
};
# Tell Starship to use the palette Stylix is already generating
palette = "base16";
# Map your custom names to Stylix/Base16 colors
# Stylix colors are available at: config.lib.stylix.colors.withHashtag.base0X
palettes.base16 = {
# Using standard Catppuccin/Base16 mapping
surface0 = "${config.lib.stylix.colors.withHashtag.base00}"; # Darkest BG
surface1 = "${config.lib.stylix.colors.withHashtag.base01}"; # Slightly lighter BG
text = "${config.lib.stylix.colors.withHashtag.base05}"; # Main Text
peach = "${config.lib.stylix.colors.withHashtag.base09}"; # Orange accent
lavender = "${config.lib.stylix.colors.withHashtag.base0E}"; # Purple accent
sapphire = "${config.lib.stylix.colors.withHashtag.base0C}"; # Cyan accent
};
os = {
disabled = false;
format = "[$symbol]($style)";