2023-11-10 01:37:05 +00:00
|
|
|
/*
|
|
|
|
use gtk theme variables to define color variables
|
|
|
|
ex. `@define-color variable_name color_code;`
|
|
|
|
use as `@variable_name`
|
|
|
|
shade, mix, and alpha modifiers are available
|
|
|
|
*/
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
@define-color foreground #c8d3f5;
|
|
|
|
@define-color background #222436;
|
|
|
|
@define-color selection-foreground #c8d3f5;
|
|
|
|
@define-color selection-background #2d3f76;
|
|
|
|
@define-color urls #4fd6be;
|
|
|
|
|
|
|
|
@define-color regular0 #1b1d2b;
|
|
|
|
@define-color regular1 #ff757f;
|
|
|
|
@define-color regular2 #c3e88d;
|
|
|
|
@define-color regular3 #ffc777;
|
|
|
|
@define-color regular4 #82aaff;
|
|
|
|
@define-color regular5 #c099ff;
|
|
|
|
@define-color regular6 #86e1fc;
|
|
|
|
@define-color regular7 #828bb8;
|
|
|
|
|
|
|
|
@define-color bright0 #444a73;
|
|
|
|
@define-color bright1 #ff757f;
|
|
|
|
@define-color bright2 #c3e88d;
|
|
|
|
@define-color bright3 #ffc777;
|
|
|
|
@define-color bright4 #82aaff;
|
|
|
|
@define-color bright5 #c099ff;
|
|
|
|
@define-color bright6 #86e1fc;
|
|
|
|
@define-color bright7 #c8d3f5;
|
|
|
|
|
|
|
|
@define-color 16 #ff966c;
|
|
|
|
@define-color 17 #c53b53;
|
2023-11-10 01:37:05 +00:00
|
|
|
|
|
|
|
* {
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
font-family: Roboto, "Symbols NFM";
|
|
|
|
font-size: 14px;
|
|
|
|
min-height: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar {
|
2024-09-23 23:54:59 +00:00
|
|
|
background-color: transparent;
|
|
|
|
color: @foreground;
|
|
|
|
margin: 5px;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
tooltip {
|
|
|
|
border-radius: 15px;
|
|
|
|
background-color: @bright0;
|
|
|
|
color: @bright7;
|
|
|
|
border: 1px solid @selection-foreground;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#custom-logo {
|
2023-11-10 01:37:05 +00:00
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
.modules-right {
|
|
|
|
border-radius: 15px 0 0 15px;
|
|
|
|
background: @selection-background;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
.modules-center {
|
|
|
|
border-radius: 15px;
|
|
|
|
background: @selection-background;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
.modules-left {
|
|
|
|
border-radius: 0 15px 15px 0;
|
|
|
|
background: @selection-background;
|
2023-11-11 12:57:52 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#workspaces,
|
|
|
|
#window,
|
|
|
|
#custom-logo,
|
|
|
|
#disk,
|
|
|
|
#memory,
|
|
|
|
#cpu,
|
|
|
|
#temperature,
|
|
|
|
#clock,
|
|
|
|
#tray,
|
|
|
|
#custom-updates,
|
|
|
|
#backlight,
|
|
|
|
#bluetooth,
|
|
|
|
#pulseaudio,
|
|
|
|
#network,
|
|
|
|
#idle_inhibitor,
|
|
|
|
#battery {
|
|
|
|
padding: 0 15px;
|
|
|
|
border-radius: 15px;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#custom-logo {
|
|
|
|
color: @urls;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#clock {
|
|
|
|
background-color: @foreground;
|
|
|
|
color: @background;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#window {
|
|
|
|
background-color: @foreground;
|
|
|
|
color: @background;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#workspaces button:hover {
|
|
|
|
color: @urls;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#workspaces button.visible {
|
|
|
|
color: @16;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#temperature.critical,
|
|
|
|
#pulseaudio.muted,
|
|
|
|
#idle_inhibitor.activated,
|
|
|
|
#workspaces button.urgent {
|
|
|
|
color: @17;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#battery {
|
|
|
|
background-color: @foreground;
|
|
|
|
color: @background;
|
|
|
|
border-radius: 15px 0 0 15px;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#battery.charging {
|
|
|
|
background-color: @urls;
|
2023-11-10 01:37:05 +00:00
|
|
|
}
|
2023-11-12 02:58:40 +00:00
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#battery.warning:not(.charging) {
|
|
|
|
background-color: @16;
|
2023-11-12 02:58:40 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#battery.critical:not(.charging) {
|
|
|
|
background-color: @17;
|
2023-11-12 02:58:40 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#tray {
|
|
|
|
background-color: @foreground;
|
2023-11-12 02:58:40 +00:00
|
|
|
}
|
2024-01-13 23:19:54 +00:00
|
|
|
|
2024-09-23 23:54:59 +00:00
|
|
|
#custom-updates.has-updates {
|
|
|
|
color: @16;
|
2024-01-13 23:19:54 +00:00
|
|
|
}
|