11 lines
440 B
Bash
11 lines
440 B
Bash
#!/bin/bash
|
|
export THEME_COLOR_FG=ffffff # main text
|
|
export THEME_COLOR_FG_DARK=b8bcc1 # secondary text
|
|
export THEME_COLOR_FG_ACCENT=9988ff # highlighted text, scrollbars (low-mid transp)
|
|
export THEME_COLOR_BG=0d1117 # base bg
|
|
export THEME_COLOR_BG_ACCENT_LIGHT=510079 # highlighted alt bg, borders
|
|
export THEME_COLOR_BG_ACCENT_DARK=020030 # alt bg
|
|
export THEME_OPACITY_LOW=0.2
|
|
export THEME_OPACITY_MID=0.55
|
|
export THEME_OPACITY_HIGH=0.85
|