mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 03:44:57 -04:00
updates
This commit is contained in:
parent
bc4d4c403a
commit
715eb53860
57 changed files with 7755 additions and 3 deletions
26
.config/sketchybar/helpers/colors.sh
Executable file
26
.config/sketchybar/helpers/colors.sh
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Gruvbox Dark Hard Color Palette
|
||||
export BLACK=0xff1d2021 # Gruvbox bg
|
||||
export WHITE=0xffd5c4a1 # Gruvbox fg
|
||||
export RED=0xfffb4934 # Gruvbox red
|
||||
export GREEN=0xffb8bb26 # Gruvbox green (active workspace)
|
||||
export BLUE=0xff83a598 # Gruvbox blue (front app icon)
|
||||
export YELLOW=0xfffabd2f # Gruvbox yellow/gold (apple icon)
|
||||
export ORANGE=0xfffe8019 # Gruvbox orange
|
||||
export MAGENTA=0xffd3869b # Gruvbox magenta
|
||||
export CYAN=0xff8ec07c # Gruvbox cyan/aqua
|
||||
export GREY=0xff665c54 # Gruvbox grey
|
||||
export TRANSPARENT=0x00000000
|
||||
|
||||
# Bar colors with Gruvbox background tones
|
||||
export BAR_COLOR=0xa01d2021 # Gruvbox bg with transparency
|
||||
export ICON_COLOR=$WHITE # Color of all icons
|
||||
export LABEL_COLOR=$WHITE # Color of all labels
|
||||
export BACKGROUND_1=0x901d2021 # Gruvbox bg
|
||||
export BACKGROUND_2=0x903c3836 # Gruvbox bg1
|
||||
|
||||
export POPUP_BACKGROUND_COLOR=0xff1d2021
|
||||
export POPUP_BORDER_COLOR=$YELLOW
|
||||
|
||||
export SHADOW_COLOR=$BLACK
|
||||
Loading…
Reference in a new issue