You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
276 B
12 lines
276 B
2 years ago
|
let
|
||
|
theme = import ./everforest;
|
||
2 years ago
|
colors = {
|
||
|
undefined = "#ff00ff";
|
||
|
fg1 = "#ffffff";
|
||
|
};
|
||
2 years ago
|
in
|
||
2 years ago
|
{
|
||
2 years ago
|
css = lib: lib.strings.concatStringsSep "\n" (lib.attrValues (lib.mapAttrs (k: v: " --${k}: ${v};") theme.colors));
|
||
2 years ago
|
}
|
||
2 years ago
|
// theme // { colors = theme.colors // colors; }
|