Skip to content

Commit 297fb4d

Browse files
feat: dark decay
1 parent e572961 commit 297fb4d

File tree

5 files changed

+57
-3
lines changed

5 files changed

+57
-3
lines changed

Diff for: colorschemes/dark-decay.nix

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
wallpaper = ./wallpapers/min_forest.png;
3+
4+
neovim = pkgs: (let
5+
decay-nvim = pkgs.vimUtils.buildVimPlugin {
6+
name = "decay.nvim";
7+
src = pkgs.decay-nvim-src;
8+
};
9+
in {
10+
extraPlugins = [decay-nvim];
11+
colorscheme = "decay-dark";
12+
opts.background = "dark";
13+
});
14+
15+
palette = {
16+
scheme = "dark";
17+
18+
accents = {
19+
primary = "blue";
20+
secondary = "cyan";
21+
};
22+
23+
primary = {
24+
background = "#101419";
25+
foreground = "#b6beca";
26+
};
27+
28+
normal = {
29+
black = "#1c252c";
30+
red = "#e05f65";
31+
green = "#78dba9";
32+
yellow = "#f1cf8a";
33+
blue = "#70a5eb";
34+
magenta = "#c68aee";
35+
cyan = "#74bee9";
36+
white = "#dee1e6";
37+
};
38+
39+
bright = {
40+
black = "#384148";
41+
blue = "#8cc1ff";
42+
cyan = "#90daff";
43+
green = "#94f7c5";
44+
magenta = "#e2a6ff";
45+
red = "#fc7b81";
46+
white = "#fafdff";
47+
yellow = "#ffeba6";
48+
};
49+
};
50+
}

Diff for: colorschemes/wallpapers/min_forest.png

1.26 MB
Loading

Diff for: config.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ rec {
4646
};
4747

4848
# select a colorscheme definition from `./colorschemes/*.nix`.
49-
metacolorscheme = import ./colorschemes/light-decay.nix;
49+
metacolorscheme = import ./colorschemes/dark-decay.nix;
5050

5151
# exports the palette attribute of metacolorscheme to be able to call
5252
# the colors from the themeable applications, even the awm one.

Diff for: users/Alpha/desktop/hyprland/settings/base.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
# blur for unfocused windows
2222
windowrulev2 = [
23-
"opacity 1.0 override 0.8 override 1.0 override,title:^(.*)$"
23+
"opacity 1.0 override 0.9 override 1.0 override,title:^(.*)$"
2424
];
2525

2626
general = let

Diff for: users/Alpha/programs/x11-misc/alacritty.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
};
2424

2525
window = {
26+
opacity = 0.95;
2627
padding = rec {
2728
x = 8;
2829
y = x;
@@ -34,7 +35,10 @@
3435
in {
3536
size = 10.5;
3637
offset.y = offset;
37-
glyph_offset.y = if offset == 0 then 0 else offset;
38+
glyph_offset.y =
39+
if offset == 0
40+
then 0
41+
else offset;
3842

3943
normal = {
4044
family = "monospace";

0 commit comments

Comments
 (0)