mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:43:55 -05:00
overhauled theming to make hyprland, waybar, mako, tmux, fuzzel, lightdm, and alacritty more consistent
This commit is contained in:
parent
2e0efb9ef8
commit
a807b12dbe
|
@ -7,7 +7,7 @@
|
|||
colors = {
|
||||
primary = {
|
||||
foreground = "#fafafa";
|
||||
background = "#000000";
|
||||
background = "#232634";
|
||||
};
|
||||
draw_bold_text_with_bright_colors = true;
|
||||
};
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
background = "#23263499";
|
||||
selection = "#232634FF";
|
||||
selection-match = "#e78284FF";
|
||||
selection-text = "#babbf1FF";
|
||||
text = "#FFFFFFFF";
|
||||
selection-text = "#f4b8e4FF";
|
||||
text = "#fafafaFF";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -34,34 +34,34 @@
|
|||
home.pointerCursor = {
|
||||
gtk.enable = true;
|
||||
# x11.enable = true;
|
||||
package = pkgs.catppuccin-cursors.latteDark;
|
||||
name = "Catppuccin-Latte-Dark-Cursors";
|
||||
package = pkgs.catppuccin-cursors.frappeDark;
|
||||
name = "Catppuccin-Frappe-Dark-Cursors";
|
||||
size = 24;
|
||||
};
|
||||
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "gtk";
|
||||
style.name = "Catppuccin-Latte-Compact-Green-Light";
|
||||
style.name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
||||
};
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = {
|
||||
package = pkgs.catppuccin-gtk.override {
|
||||
accents = [ "green" ];
|
||||
accents = [ "mauve" ];
|
||||
size = "compact";
|
||||
variant = "latte";
|
||||
variant = "frappe";
|
||||
tweaks = [ "normal" ];
|
||||
};
|
||||
name = "Catppuccin-Latte-Compact-Green-Light";
|
||||
name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
||||
};
|
||||
iconTheme = {
|
||||
package = pkgs.catppuccin-papirus-folders.override {
|
||||
flavor = "latte";
|
||||
accent = "green";
|
||||
flavor = "frappe";
|
||||
accent = "mauve";
|
||||
};
|
||||
name = "Papirus-Light";
|
||||
name = "Papirus-Dark";
|
||||
};
|
||||
font = {
|
||||
name = "NotoSans Nerd Font Regular";
|
||||
|
|
|
@ -72,10 +72,10 @@ general {
|
|||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
|
||||
gaps_in = 5
|
||||
gaps_out = 15
|
||||
gaps_out = 10
|
||||
border_size = 2
|
||||
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
|
||||
col.inactive_border = rgba(595959aa)
|
||||
col.active_border = rgba(99d1dbee) rgba(ca9ee6ee) 45deg
|
||||
col.inactive_border = rgba(303446aa)
|
||||
|
||||
layout = dwindle
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
services.mako = {
|
||||
enable = true;
|
||||
font = "NotoSans Nerd Font Regular 10";
|
||||
backgroundColor = "#00000099";
|
||||
textColor = "#FFFFFF";
|
||||
backgroundColor = "#30344699";
|
||||
textColor = "#FAFAFA";
|
||||
borderRadius = 10;
|
||||
defaultTimeout = 10000;
|
||||
padding = "15";
|
||||
|
|
|
@ -84,8 +84,8 @@
|
|||
];
|
||||
terminal = "tmux-256color";
|
||||
extraConfig = ''
|
||||
set-option -g status-bg blue
|
||||
set-option -g pane-active-border-style fg=blue
|
||||
set-option -g status-bg plum4
|
||||
set-option -g pane-active-border-style fg=plum4
|
||||
set-option -g @tmux-weather-format "%x+%t"
|
||||
set-option -g @tmux-weather-units "u"
|
||||
set -g status-right '#{cpu_percentage} CPU | #{battery_percentage} BAT | %I:%M %p | #{weather}'
|
||||
|
|
|
@ -6,20 +6,20 @@
|
|||
}
|
||||
window#waybar {
|
||||
background: rgba (0, 0, 0, 0.5);
|
||||
color: #FFFFFF;
|
||||
color: #FAFAFA;
|
||||
}
|
||||
#workspaces button {
|
||||
padding: 5px 10px;
|
||||
color: #FFFFFF;
|
||||
color: #FAFAFA;
|
||||
}
|
||||
#workspaces button.active {
|
||||
color: #a6d189;
|
||||
color: #ca9ee6;
|
||||
}
|
||||
#clock, #battery, #pulseaudio, #bluetooth, #network, #tray, #power-profiles-daemon {
|
||||
padding: 0 10px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
#battery.critical { color: #e78284; }
|
||||
#battery.full { color: #a6d189; }
|
||||
#battery.normal { color: #FFFFFF; }
|
||||
#battery.full { color: #ca9ee6; }
|
||||
#battery.normal { color: #FAFAFA; }
|
||||
|
||||
|
|
|
@ -9,26 +9,26 @@
|
|||
enable = true;
|
||||
greeters.slick = {
|
||||
enable = true;
|
||||
theme.name = "Catppuccin-Latte-Compact-Green-Light";
|
||||
theme.name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
||||
theme.package = pkgs.catppuccin-gtk.override {
|
||||
accents = [ "green" ];
|
||||
accents = [ "mauve" ];
|
||||
size = "compact";
|
||||
variant = "latte";
|
||||
variant = "frappe";
|
||||
tweaks = [ "normal" ];
|
||||
};
|
||||
iconTheme.name = "Papirus-Light";
|
||||
iconTheme.name = "Papirus-Dark";
|
||||
iconTheme.package = pkgs.catppuccin-papirus-folders.override {
|
||||
flavor = "latte";
|
||||
accent = "green";
|
||||
flavor = "frappe";
|
||||
accent = "mauve";
|
||||
};
|
||||
font.name = "NotoSansM Nerd Font Mono";
|
||||
font.name = "NotoSans Nerd Font Regular";
|
||||
|
||||
cursorTheme.package = pkgs.catppuccin-cursors.latteDark;
|
||||
cursorTheme.name = "Catppuccin-Latte-Dark-Cursors";
|
||||
cursorTheme.name = "Catppuccin-Frappe-Dark-Cursors";
|
||||
cursorTheme.size = 32;
|
||||
|
||||
extraConfig = ''
|
||||
background=#fdfdff
|
||||
background=#ca9ee6
|
||||
enable-hidpi=on
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue