nixos-config

NixOS configs for my systems
Log | Files | Refs

colors.nix (623B)


      1 rec {
      2   everblush = {
      3     primary = {
      4       background = "#141b1e";
      5       foreground = "#dadada";
      6     };
      7 
      8     normal = {
      9       black = "#232a2d";
     10       red = "#e57474";
     11       green = "#8ccf7e";
     12       yellow = "#e5c76b";
     13       blue = "#67b0e8";
     14       magenta = "#c47fd5";
     15       cyan = "#6cbfbf";
     16       white = "#b3b9b8";
     17     };
     18 
     19     bright = {
     20       black = "#2d3437";
     21       red = "#ef7e7e";
     22       green = "#96d988";
     23       yellow = "#f4d67a";
     24       blue = "#71baf2";
     25       magenta = "#ce89df";
     26       cyan = "#67cbe7";
     27       white = "#bdc3c2";
     28     };
     29   };
     30 
     31   # easy to switch current theme from here
     32   current = everblush;
     33 }