This commit is contained in:
mr0xb 2026-06-03 14:36:50 -04:00
commit 715eb53860
No known key found for this signature in database
57 changed files with 7755 additions and 3 deletions

27
.config/sketchybar/colors.sh Executable file
View file

@ -0,0 +1,27 @@
#!/bin/bash
# IR Black Color Palette (from Ghostty theme)
export BLACK=0xff000000 # IR Black bg
export WHITE=0xfff1f1f1 # IR Black fg
export RED=0xfffa6c60 # IR Black red
#export GREEN=0xffa8ff60 # IR Black green
export GREEN=0xff906cff # PURPLE
export BLUE=0xff96cafe # IR Black blue
export YELLOW=0xfffffeb7 # IR Black yellow
export ORANGE=0xfffcb6b0 # IR Black bright red (warm accent)
export MAGENTA=0xfffa73fd # IR Black magenta
export CYAN=0xffc6c5fe # IR Black cyan/lavender
export GREY=0xff4f4f4f # IR Black dim
export TRANSPARENT=0x00000000
# Bar colors with IR Black background
export BAR_COLOR=0xa0000000 # IR Black bg with transparency
export ICON_COLOR=$WHITE # Color of all icons
export LABEL_COLOR=$WHITE # Color of all labels
export BACKGROUND_1=0x90000000 # IR Black bg
export BACKGROUND_2=0x604f4f4f # IR Black dim, semi-transparent
export POPUP_BACKGROUND_COLOR=0xff000000
export POPUP_BORDER_COLOR=$GREEN
export SHADOW_COLOR=$BLACK