diff --git a/home/apps/discord.nix b/home/apps/discord.nix index fe7d297..171d64b 100644 --- a/home/apps/discord.nix +++ b/home/apps/discord.nix @@ -13,6 +13,10 @@ in { ]; home.activation.discordSettings = let css = '' + @import url("https://catppuccin.github.io/discord/dist/catppuccin-frappe-pink.theme.css") (prefers-color-scheme: dark); + @import url("https://catppuccin.github.io/discord/dist/catppuccin-latte-pink.theme.css") (prefers-color-scheme: light); + @import url(//dablulite.github.io/css-snippets/ConsistentChatbar/import.css); + :root { --font-primary: "IBM Plex Sans", sans-serif; --font-headline: "IBM Plex Sans", sans-serif; diff --git a/home/apps/starship/config.toml b/home/apps/starship/config.toml index ea80dbb..a8319b9 100644 --- a/home/apps/starship/config.toml +++ b/home/apps/starship/config.toml @@ -76,7 +76,7 @@ $character""" add_newline = true continuation_prompt = '[>](bold subtext0) ' -palette = "catppuccin_mocha" +palette = "catppuccin_frappe" [character] success_symbol = '[λ](bold text)' @@ -464,6 +464,62 @@ mantle = '#e6e9ef' crust = '#dce0e8' contrast = '#ffffff' +[palettes.catppuccin_frappe] +rosewater = "#f2d5cf" +flamingo = "#eebebe" +pink = "#f4b8e4" +mauve = "#ca9ee6" +red = "#e78284" +maroon = "#ea999c" +peach = "#ef9f76" +yellow = "#e5c890" +green = "#a6d189" +teal = "#81c8be" +sky = "#99d1db" +sapphire = "#85c1dc" +blue = "#8caaee" +lavender = "#babbf1" +text = "#c6d0f5" +subtext1 = "#b5bfe2" +subtext0 = "#a5adce" +overlay2 = "#949cbb" +overlay1 = "#838ba7" +overlay0 = "#737994" +surface2 = "#626880" +surface1 = "#51576d" +surface0 = "#414559" +base = "#303446" +mantle = "#292c3c" +crust = "#232634" + +[palettes.catppuccin_macchiato] +rosewater = "#f4dbd6" +flamingo = "#f0c6c6" +pink = "#f5bde6" +mauve = "#c6a0f6" +red = "#ed8796" +maroon = "#ee99a0" +peach = "#f5a97f" +yellow = "#eed49f" +green = "#a6da95" +teal = "#8bd5ca" +sky = "#91d7e3" +sapphire = "#7dc4e4" +blue = "#8aadf4" +lavender = "#b7bdf8" +text = "#cad3f5" +subtext1 = "#b8c0e0" +subtext0 = "#a5adcb" +overlay2 = "#939ab7" +overlay1 = "#8087a2" +overlay0 = "#6e738d" +surface2 = "#5b6078" +surface1 = "#494d64" +surface0 = "#363a4f" +base = "#24273a" +mantle = "#1e2030" +crust = "#181926" + [palettes.catppuccin_mocha] rosewater = '#f5e0dc' flamingo = '#f2cdcd' diff --git a/home/apps/vscode/settings.json b/home/apps/vscode/settings.json index 8289d1c..acf791b 100644 --- a/home/apps/vscode/settings.json +++ b/home/apps/vscode/settings.json @@ -44,8 +44,8 @@ "window.autoDetectColorScheme": true, "window.commandCenter": false, "window.titleBarStyle": "custom", - "workbench.colorTheme": "Catppuccin Mocha", - "workbench.iconTheme": "catppuccin-mocha", + "workbench.colorTheme": "Catppuccin Frappé", + "workbench.iconTheme": "catppuccin-frappe", "workbench.layoutControl.enabled": false, "workbench.preferredDarkColorTheme": "Catppuccin Mocha", "workbench.preferredLightColorTheme": "Catppuccin Latte", diff --git a/home/apps/wezterm/wezterm.lua b/home/apps/wezterm/wezterm.lua index d7d4eb4..aeaf8c8 100644 --- a/home/apps/wezterm/wezterm.lua +++ b/home/apps/wezterm/wezterm.lua @@ -25,6 +25,7 @@ c.inactive_pane_hsb = { brightness = 0.90 } require("bar.plugin").apply_to_config(c) require("catppuccin.plugin").apply_to_config(c, { sync = true, + sync_flavors = { dark = "frappe" }, }) return c