Up
This commit is contained in:
@@ -5,6 +5,16 @@ with lib;
|
||||
{
|
||||
options.theme = {
|
||||
|
||||
font = mkOption {
|
||||
type = types.str;
|
||||
description = "Default font";
|
||||
};
|
||||
|
||||
font-mono = mkOption {
|
||||
type = types.str;
|
||||
description = "Default mono font";
|
||||
};
|
||||
|
||||
rounding = mkOption {
|
||||
type = types.int;
|
||||
description = "Borders rounding";
|
||||
@@ -42,7 +52,6 @@ with lib;
|
||||
"primary-fg"
|
||||
"secondary-bg"
|
||||
"secondary-fg"
|
||||
"cursor"
|
||||
"color0"
|
||||
"color1"
|
||||
"color2"
|
||||
|
||||
1
home/variables/theme/default.nix
Normal file
1
home/variables/theme/default.nix
Normal file
@@ -0,0 +1 @@
|
||||
{ imports = [ ./nixy.nix ]; }
|
||||
40
home/variables/theme/nixy.nix
Normal file
40
home/variables/theme/nixy.nix
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
imports = [ ./config/template.nix ];
|
||||
|
||||
theme = {
|
||||
font-mono = "FiraCode Nerd Font Mono";
|
||||
font = "SFProDisplay Nerd Font";
|
||||
rounding = 15;
|
||||
gaps-in = 10;
|
||||
gaps-out = 15;
|
||||
border-size = 2;
|
||||
|
||||
colors = {
|
||||
bg = "090914";
|
||||
fg = "FCFCFC";
|
||||
alt-bg = "191924";
|
||||
alt-fg = "ECECEC";
|
||||
primary-bg = "9978F8";
|
||||
primary-fg = "000000";
|
||||
secondary-bg = "4928B8";
|
||||
secondary-fg = "000000";
|
||||
color0 = "414868";
|
||||
color1 = "f7768e";
|
||||
color2 = "73daca";
|
||||
color3 = "e0af68";
|
||||
color4 = "7aa2f7";
|
||||
color5 = "9978F8";
|
||||
color6 = "7dcfff";
|
||||
color7 = "E4E5E7";
|
||||
color8 = "515878";
|
||||
color9 = "f7869e";
|
||||
color10 = "83eada";
|
||||
color11 = "f0bf78";
|
||||
color12 = "8ab2f7";
|
||||
color13 = "A988F8";
|
||||
color14 = "8ddfff";
|
||||
color15 = "f4f5f7";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user