57 lines
2.3 KiB
Nix
57 lines
2.3 KiB
Nix
# home.nix
|
||
{
|
||
pkgs,
|
||
config,
|
||
nix-colors,
|
||
...
|
||
}:
|
||
|
||
{
|
||
imports = [
|
||
nix-colors.homeManagerModules.default
|
||
];
|
||
|
||
colorScheme = {
|
||
slug = "teal-green-dark";
|
||
name = "Teal Green Dark";
|
||
author = "Adrian";
|
||
palette = {
|
||
# Base16 Teal‐Green Dark Theme - Enhanced Teal Version
|
||
# base00 = "0c1f1d"; # Default background - deeper teal base
|
||
# base01 = "12302d"; # Lighter background (status bars)
|
||
# base02 = "1c3b38"; # Selection background
|
||
# base03 = "26514d"; # Comments, secondary content
|
||
# base04 = "447b76"; # Dark foreground (status bars)
|
||
# base05 = "c4e5e0"; # Default foreground
|
||
# base06 = "d4f0ed"; # Light foreground
|
||
# base07 = "f0fbfa"; # Lightest background
|
||
# base08 = "5fcac0"; # Variables, markup link text - teal accent
|
||
# base09 = "40bfa5"; # Integers, constants - teal-green
|
||
# base0A = "60d5b0"; # Classes, search highlight - bright teal
|
||
# base0B = "40c0a0"; # Strings, inserted - true teal (less green)
|
||
# base0C = "30d0c0"; # Support, escape characters - cyan-teal
|
||
# base0D = "2aa198"; # Functions, headings - classic teal
|
||
# base0E = "3cb4ac"; # Keywords, selectors - teal-blue
|
||
# base0F = "70d0c0"; # Deprecated tags - light teal
|
||
|
||
## catppuccin mocha based
|
||
base00 = "0b1c1a"; # Default background — deeper teal-dark background
|
||
base01 = "153532"; # Lighter background / status bars
|
||
base02 = "1b3d39"; # Selection background / line highlight
|
||
base03 = "275454"; # Comments, secondary UI elements
|
||
base04 = "6f7389"; # Dark foreground / secondary text
|
||
base05 = "95a0b8"; # Default foreground / main text
|
||
base06 = "a8b2ce"; # Light foreground / lighter UI elements
|
||
base07 = "ccdffa"; # Lightest background / highlight background
|
||
base08 = "f38ba8"; # Errors, alerts — red-pink accent
|
||
base09 = "e0a878"; # Numbers, constants — muted peach/orange
|
||
base0A = "b8c071"; # Warnings, highlights — golden-yellow
|
||
base0B = "4fbf93"; # Strings, inserts — teal-green
|
||
base0C = "2ac5c2"; # Support, escape/sequences — cyan-teal
|
||
base0D = "2fa6b0"; # Functions, types — classic teal-blue
|
||
base0E = "c7a8f5"; # Keywords, special — soft magenta/purple
|
||
base0F = "b2b4cf"; # Deprecated / special tags — light cool grey-lavender
|
||
};
|
||
};
|
||
}
|