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)
* Hyprland Inspirations
* Aylur - [Link](https://github.com/Aylur/dotfiles)
* Base16 Colors (For Stylix) - [Link](https://tinted-theming.github.io/base16-gallery/)
---
# Theming

View file

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

View file

@ -49,7 +49,6 @@
};
};
animations = {
# https://wiki.hyprland.org/Configuring/Animations/
enabled = true;
bezier = "myBezier, 0.05, 0.9, 0.1, 1.05";
animation = [
@ -68,6 +67,10 @@
no_gaps_when_only = 1;
};
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;
padding: 0px 10px;
margin: 5px;
border-radius: 0px;
border-radius: 3px;
font-weight: normal;
}

View file

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

View file

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