-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaybar.css
More file actions
50 lines (41 loc) · 1.39 KB
/
waybar.css
File metadata and controls
50 lines (41 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* Clawmarchy AMOLED Dark Theme - Waybar
* Static override -- replaces template-generated waybar.css
* Source: colors.toml values hardcoded
* Update: Manual -- accent changes affect 2 values; palette changes affect all
*/
/* === Color Variables (required by Omarchy structural style.css) === */
@define-color foreground #E8E0D0; /* colors.toml: foreground */
@define-color background #000000; /* colors.toml: background */
/* === Semantic Status Colors (COMP-02) === */
@define-color theme-red #C45B6E; /* colors.toml: color1 */
@define-color theme-yellow #C49B5A; /* colors.toml: color3 */
@define-color theme-green #6EA88E; /* colors.toml: color2 */
/* === Accent Highlights === */
/* Active workspace number highlighted with accent */
#workspaces button.active {
color: #7B6CBD; /* colors.toml: accent */
}
/* Module icons in accent color */
#battery,
#network,
#pulseaudio,
#bluetooth,
#cpu {
color: #7B6CBD; /* colors.toml: accent */
}
/* Battery warning/critical states use semantic colors */
#battery.warning {
color: @theme-yellow;
}
#battery.critical {
color: @theme-red;
}
/* Clock text in foreground (no accent) */
#clock {
color: @foreground;
}
/* Tooltip styling */
tooltip {
background-color: #000000; /* colors.toml: background */
color: #E8E0D0; /* colors.toml: foreground */
}