Set up startpage

This commit is contained in:
Elnu 2023-01-10 20:19:20 -08:00
parent 602e6a4d6b
commit bda6b363a1
22 changed files with 488 additions and 48 deletions

View file

@ -1,4 +1,8 @@
let
theme = import ./everforest;
in
{
undefined = "#ff00ff";
foreground-bright = "#ffffff";
} // import ./everforest
fg1 = "#ffffff";
css = lib: lib.strings.concatStringsSep "\n" (lib.attrValues (lib.mapAttrs (k: v: " --${k}: ${v};") theme.colors));
} // theme // theme.colors

View file

@ -10,10 +10,13 @@
};
wallpaper = "306286.jpg";
background = "#1e2326";
background-alt = "#272e33";
foreground = "#d3c6aa";
primary = "#a7c080";
alert = "#e67e80";
disabled = "#2e383c";
colors = {
bg0 = "#1e2326";
bg1 = "#272e33";
bg2 = "#2e383c";
fg0 = "#d3c6aa";
primary = "#a7c080";
alert = "#e67e80";
disabled = "#2e383c";
};
}

View file

@ -7,10 +7,13 @@
};
gtkIconTheme = pkgs: null;
background = "#2e3440";
background-alt = "#3b4252";
foreground = "#eceff4";
primary = "#8fbcbb";
alert = "#bf616a";
disabled = "#434c5e";
colors = {
bg0 = "#2e3440";
bg1 = "#3b4252";
bg2 = "#434c53";
fg0 = "#eceff4";
primary = "#8fbcbb";
alert = "#bf616a";
disabled = "#434c5e";
};
}