Rename colors to theme, clean up color usage

This commit is contained in:
Elnu 2023-01-25 19:05:59 -08:00
parent 5d9fc8f4f3
commit a548fbba06
12 changed files with 60 additions and 60 deletions

21
theme/nord/default.nix Normal file
View file

@ -0,0 +1,21 @@
{
theme = "nord";
kitty-theme = "Nord";
wallpaper = "roxynord.png";
gtkTheme = pkgs: {
package = pkgs.nordic;
name = "Nordic";
};
gtkIconTheme = pkgs: null;
colors = {
bg0 = "#2e3440";
bg1 = "#3b4252";
bg2 = "#434c53";
fg0 = "#eceff4";
primary = "#8fbcbb";
alert = "#bf616a";
disabled = "#434c5e";
};
}