nixos/home/hyprland/waybar/style.css
Evie Litherland-Smith 94e1a23bf2 Major theme updates
Switched back to tokyo-night for base scheme but disable a lot of
stylix config (and selectively re-enable for certain
modules). Manually theme things using the tokyonight palette for a
nicer and more cohesive experience

Also change to a new wallpaper, fits scheme better as well

Added named workspaces for common programs (emacs, chromium, steam)
and keep numbered workspaces as generic scratch space

Move MPRIS to right section, add hyprland/window module (with a
separator bar)
2023-11-12 13:24:09 +00:00

96 lines
1.9 KiB
CSS

/* *background: #1a1b26 */
/* *foreground: #c0caf5 */
@define-color base00 #15161e;
@define-color base01 #f7768e;
@define-color base02 #9ece6a;
@define-color base03 #e0af68;
@define-color base04 #7aa2f7;
@define-color base05 #bb9af7;
@define-color base06 #7dcfff;
@define-color base07 #a9b1d6;
@define-color base08 #414868;
@define-color base09 #f7768e;
@define-color base0A #9ece6a;
@define-color base0B #e0af68;
@define-color base0C #7aa2f7;
@define-color base0D #bb9af7;
@define-color base0E #7dcfff;
@define-color base0F #c0caf5;
* {
font-family: "FiraMono Nerd Font";
font-size: 16px;
}
window { background: transparent; }
window > box {
color: #c0caf5;
background: alpha(#1a1b26, 0.5);
box-shadow: inset 0 0 0 1px alpha(#c0caf5, 0.1), 0 0 0 1px alpha(#1a1b26, 0.5);
margin: 10px 10px 0px;
padding: 0px;
border: 1px solid #bb9af7;
border-radius: 10px;
}
tooltip {
color: #c0caf5;
/* Temp set alpha to 1.0 until I can sort out blurls issue */
background: alpha(#1a1b26, 1.0);
box-shadow: inset 0 0 0 1px alpha(#bb9af7, 0.1), 0 0 0 1px alpha(#1a1b26, 0.5);
border: 1px solid #bb9af7;
border-radius: 10px;
padding: 5px;
margin: 0px;
}
#workspaces,
#mpris,
#pulseaudio,
#battery,
#disk,
#cpu,
#memory,
#temperature,
#clock,
#tray {
margin: 0px;
padding: 1px 5px;
}
#workspaces,
#mpris,
#tray { color: #c0caf5; }
#pulseaudio { color: #f7768e; }
#battery { color: #e0af68; }
#disk { color: #e0af68; }
#cpu { color: #9ece6a; }
#memory { color: #7dcfff; }
#temperature { color: #7aa2f7; }
#clock { color: #bb9af7; }
#workspaces button {
background: transparent;
border: 1px solid transparent;
border-radius: 10px;
color: #c0caf5;
margin: 0px;
padding: 0px 5px;
}
#workspaces button.empty {
color: #414868;
}
#workspaces button.active {
color: #bb9af7;
}
#workspaces button.urgent {
border: 1px solid #f7768e;
color: #f7768e;
}