mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-27 19:34:57 -04:00
26 lines
1 KiB
Shell
Executable file
26 lines
1 KiB
Shell
Executable file
#!/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
|