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