This commit is contained in:
iFargle 2024-01-04 22:40:07 +09:00
parent 776a99b02e
commit 294e7dbd18
6 changed files with 12 additions and 8 deletions

View file

@ -120,6 +120,7 @@ Completed ToDo List [here](docs/complete.md)
* Nix colors - [Link](https://github.com/Misterio77/nix-colors) * Nix colors - [Link](https://github.com/Misterio77/nix-colors)
* Hyprland Inspirations * Hyprland Inspirations
* Aylur - [Link](https://github.com/Aylur/dotfiles) * Aylur - [Link](https://github.com/Aylur/dotfiles)
* Base16 Colors (For Stylix) - [Link](https://tinted-theming.github.io/base16-gallery/)
--- ---
# Theming # Theming

View file

@ -22,7 +22,7 @@
stylix = { stylix = {
image = /etc/nixos/git/wallpapers/stylix/wallpaper2.jpg; image = /etc/nixos/git/wallpapers/stylix/wallpaper2.jpg;
autoEnable = true; autoEnable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/kanagawa.yaml"; base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml";
polarity = "dark"; polarity = "dark";
targets = { targets = {
vscode.enable = true; vscode.enable = true;

View file

@ -49,7 +49,6 @@
}; };
}; };
animations = { animations = {
# https://wiki.hyprland.org/Configuring/Animations/
enabled = true; enabled = true;
bezier = "myBezier, 0.05, 0.9, 0.1, 1.05"; bezier = "myBezier, 0.05, 0.9, 0.1, 1.05";
animation = [ animation = [
@ -68,6 +67,10 @@
no_gaps_when_only = 1; no_gaps_when_only = 1;
}; };
master.new_is_master = true; master.new_is_master = true;
windowrule = [
"noblur,^(firefox)$" # disables blur for firefox
"opacity 1.0 override,^(firefox)$"
];
}; };
}; };
} }

View file

@ -173,7 +173,7 @@
font-size: 16px; font-size: 16px;
padding: 0px 10px; padding: 0px 10px;
margin: 5px; margin: 5px;
border-radius: 0px; border-radius: 3px;
font-weight: normal; font-weight: normal;
} }

View file

@ -7,14 +7,14 @@
background-image: none; background-image: none;
} }
window { window {
background-color: "#${config.lib.stylix.colors.base05}"; background-color: #${config.lib.stylix.colors.base05};
} }
button { button {
color: "#${config.lib.stylix.colors.base04}"; color: #${config.lib.stylix.colors.base04};
font-size: 0px; font-size: 0px;
border-radius: 5000px; border-radius: 5000px;
margin: 25px; margin: 25px;
background-color: "#${config.lib.stylix.colors.base01}"; background-color: #${config.lib.stylix.colors.base01};
border-style: solid; border-style: solid;
border-width: 3px; border-width: 3px;
background-repeat: no-repeat; background-repeat: no-repeat;
@ -23,7 +23,7 @@
} }
button:active, button:hover { button:active, button:hover {
background-color: "#${config.lib.stylix.colors.base00}"; background-color: #${config.lib.stylix.colors.base00};
outline-style: none; outline-style: none;
} }

View file

@ -16,7 +16,7 @@
}; };
autoEnable = true; autoEnable = true;
polarity = "dark"; polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/kanagawa.yaml"; base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml";
fonts = { fonts = {
serif = { serif = {
package = pkgs.dejavu_fonts; package = pkgs.dejavu_fonts;