1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
# Colors translated from style.css (0xAARRGGBB)
export WHITE=0xffffffff
export TEXT=0xffd9d8d8 # rgba(217,216,216,1) default text / visible+active workspace
export TEXT_DIM=0x66d9d8d8 # rgba(217,216,216,0.4) inactive workspace
export RED=0xffee2e24 # rgba(238,46,36,1) urgent / battery+storage critical
export YELLOW=0xffffd204 # rgba(255,210,4,1) battery+storage warning
export BAR_COLOR=0x80000000 # rgba(0,0,0,0.25) #waybar background
export POPUP_BG=0xd9231f20 # rgba(35,31,32,0.85) window#waybar.solo background
export TRANSPARENT=0x00000000
|