diff options
Diffstat (limited to 'theme')
-rw-r--r-- | theme/default.nix | 4 | ||||
-rw-r--r-- | theme/material-darker.nix | 18 | ||||
-rw-r--r-- | theme/tomorrow-night.nix | 18 |
3 files changed, 39 insertions, 1 deletions
diff --git a/theme/default.nix b/theme/default.nix index b3af086..7e1108b 100644 --- a/theme/default.nix +++ b/theme/default.nix | |||
@@ -2,5 +2,7 @@ let | |||
2 | day = import ./day.nix; | 2 | day = import ./day.nix; |
3 | night = import ./night.nix; | 3 | night = import ./night.nix; |
4 | gruvbox = import ./gruvbox.nix; | 4 | gruvbox = import ./gruvbox.nix; |
5 | tomorrow-night = import ./tomorrow-night.nix; | ||
6 | material-darker = import ./material-darker.nix; | ||
5 | in | 7 | in |
6 | night | 8 | material-darker |
diff --git a/theme/material-darker.nix b/theme/material-darker.nix new file mode 100644 index 0000000..ded97fe --- /dev/null +++ b/theme/material-darker.nix | |||
@@ -0,0 +1,18 @@ | |||
1 | { | ||
2 | base00 = "#111111"; | ||
3 | base01 = "#202020"; | ||
4 | base02 = "#242424"; | ||
5 | base03 = "#393939"; | ||
6 | base04 = "#4A4A4A"; | ||
7 | base05 = "#CCCCCC"; | ||
8 | base06 = "#EEFFFF"; | ||
9 | base07 = "#FFFFFF"; | ||
10 | base08 = "#cc6666"; | ||
11 | base09 = "#de935f"; | ||
12 | base0A = "#f0c674"; | ||
13 | base0B = "#b5bd68"; | ||
14 | base0C = "#8abeb7"; | ||
15 | base0D = "#81a2be"; | ||
16 | base0E = "#b294bb"; | ||
17 | base0F = "#a3685a"; | ||
18 | } | ||
diff --git a/theme/tomorrow-night.nix b/theme/tomorrow-night.nix new file mode 100644 index 0000000..93552b3 --- /dev/null +++ b/theme/tomorrow-night.nix | |||
@@ -0,0 +1,18 @@ | |||
1 | { | ||
2 | base00 = "#1d1f21"; | ||
3 | base01 = "#282a2e"; | ||
4 | base02 = "#373b41"; | ||
5 | base03 = "#969896"; | ||
6 | base04 = "#b4b7b4"; | ||
7 | base05 = "#c5c8c6"; | ||
8 | base06 = "#e0e0e0"; | ||
9 | base07 = "#ffffff"; | ||
10 | base08 = "#cc6666"; | ||
11 | base09 = "#de935f"; | ||
12 | base0A = "#f0c674"; | ||
13 | base0B = "#b5bd68"; | ||
14 | base0C = "#8abeb7"; | ||
15 | base0D = "#81a2be"; | ||
16 | base0E = "#b294bb"; | ||
17 | base0F = "#a3685a"; | ||
18 | } | ||