8 lines
230 B
Nix
8 lines
230 B
Nix
let
|
|
theme = import ./everforest;
|
|
in
|
|
{
|
|
undefined = "#ff00ff";
|
|
fg1 = "#ffffff";
|
|
css = lib: lib.strings.concatStringsSep "\n" (lib.attrValues (lib.mapAttrs (k: v: " --${k}: ${v};") theme.colors));
|
|
} // theme // theme.colors
|