diff options
Diffstat (limited to 'dot_config/waybar/style.css')
| -rw-r--r-- | dot_config/waybar/style.css | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/dot_config/waybar/style.css b/dot_config/waybar/style.css new file mode 100644 index 0000000..fc35942 --- /dev/null +++ b/dot_config/waybar/style.css | |||
| @@ -0,0 +1,140 @@ | |||
| 1 | @define-color base00 #181818; | ||
| 2 | @define-color base01 #282828; | ||
| 3 | @define-color base02 #383838; | ||
| 4 | @define-color base03 #585858; | ||
| 5 | @define-color base04 #b8b8b8; | ||
| 6 | @define-color base05 #d8d8d8; | ||
| 7 | @define-color base06 #e8e8e8; | ||
| 8 | @define-color base07 #f8f8f8; | ||
| 9 | @define-color base08 #ab4642; | ||
| 10 | @define-color base09 #dc9656; | ||
| 11 | @define-color base0A #f7ca88; | ||
| 12 | @define-color base0B #a1b56c; | ||
| 13 | @define-color base0C #86c1b9; | ||
| 14 | @define-color base0D #7cafc2; | ||
| 15 | @define-color base0E #ba8baf; | ||
| 16 | @define-color base0F #a16946; | ||
| 17 | |||
| 18 | * { | ||
| 19 | font-family: Aporetic Serif Mono, Noto Emoji, Symbols Nerd Font Mono; | ||
| 20 | transition: none; | ||
| 21 | box-shadow: none; | ||
| 22 | text-shadow: none; | ||
| 23 | min-height: 0; | ||
| 24 | } | ||
| 25 | |||
| 26 | tooltip { | ||
| 27 | border: solid @base02; | ||
| 28 | background: @base01; | ||
| 29 | opacity: 0.9; | ||
| 30 | } | ||
| 31 | |||
| 32 | tooltip label { | ||
| 33 | color: @base05; | ||
| 34 | padding: 0; | ||
| 35 | } | ||
| 36 | |||
| 37 | #waybar { | ||
| 38 | color: @base04; | ||
| 39 | background: @base01; | ||
| 40 | } | ||
| 41 | |||
| 42 | .modules-right label, | ||
| 43 | .modules-right image { | ||
| 44 | margin: 0.4em 0.2em; | ||
| 45 | padding: 0 0.4em; | ||
| 46 | background: @base02; | ||
| 47 | border-radius: 0.2em; | ||
| 48 | } | ||
| 49 | |||
| 50 | .modules-left { | ||
| 51 | margin-left: 0.2em; | ||
| 52 | } | ||
| 53 | |||
| 54 | .modules-right { | ||
| 55 | margin-right: 0.2em; | ||
| 56 | } | ||
| 57 | |||
| 58 | #custom-recorder { | ||
| 59 | color: @base08; | ||
| 60 | } | ||
| 61 | |||
| 62 | #custom-notification.notification, | ||
| 63 | #custom-notification.dnd-notification, | ||
| 64 | #custom-notification.dnd-inhibited-notification { | ||
| 65 | color: @base07; | ||
| 66 | background: @base02; | ||
| 67 | } | ||
| 68 | |||
| 69 | #temperature, | ||
| 70 | #cpu, | ||
| 71 | #memory, | ||
| 72 | #disk, | ||
| 73 | #battery { | ||
| 74 | margin: 0.4em 0.2em; | ||
| 75 | padding: 0 0.4em; | ||
| 76 | background: @base02; | ||
| 77 | border-radius: 0.2em; | ||
| 78 | } | ||
| 79 | |||
| 80 | #workspaces button { | ||
| 81 | background: none; | ||
| 82 | border-radius: 0.2em; | ||
| 83 | margin: 0.4em 0.2em; | ||
| 84 | padding: 0.2em 0.2em; | ||
| 85 | color: @base05; | ||
| 86 | } | ||
| 87 | |||
| 88 | #workspaces button:hover { | ||
| 89 | background: none; | ||
| 90 | border-color: @base07; | ||
| 91 | } | ||
| 92 | |||
| 93 | #workspaces button.focused { | ||
| 94 | background: none; | ||
| 95 | color: @base07; | ||
| 96 | } | ||
| 97 | |||
| 98 | #workspaces button.urgent { | ||
| 99 | color: @base08; | ||
| 100 | } | ||
| 101 | |||
| 102 | #window { | ||
| 103 | margin-left: 1em; | ||
| 104 | margin-right: 1em; | ||
| 105 | } | ||
| 106 | |||
| 107 | #tray menu { | ||
| 108 | color: @base05; | ||
| 109 | background: @base01; | ||
| 110 | border: solid 1px; | ||
| 111 | border-color: @base02; | ||
| 112 | } | ||
| 113 | |||
| 114 | #tray menu menuitem { | ||
| 115 | padding-top: 0px; | ||
| 116 | padding-bottom: 0px; | ||
| 117 | margin-top: 0.1em; | ||
| 118 | margin-bottom: 0em; | ||
| 119 | } | ||
| 120 | |||
| 121 | #tray menu menuitem:hover { | ||
| 122 | background: none; | ||
| 123 | } | ||
| 124 | |||
| 125 | #tray menu separator { | ||
| 126 | background: @base03; | ||
| 127 | padding-top: 1px; | ||
| 128 | margin-top: 0.2em; | ||
| 129 | margin-bottom: 0.2em; | ||
| 130 | } | ||
| 131 | |||
| 132 | #battery.discharging.empty { | ||
| 133 | color: @base02; | ||
| 134 | background: @base08; | ||
| 135 | } | ||
| 136 | |||
| 137 | #battery.discharging.low { | ||
| 138 | color: @base02; | ||
| 139 | background: @base09; | ||
| 140 | } | ||
