| 12345678910111213141516171819202122232425 |
- #!/bin/sh
- # Base palette:
- export JONATHANDARKER_COLOR_00="#2B2B2B"
- export JONATHANDARKER_COLOR_01="#CC3135"
- export JONATHANDARKER_COLOR_02="#628854"
- export JONATHANDARKER_COLOR_03="#DA7317"
- export JONATHANDARKER_COLOR_04="#1A8AA4"
- export JONATHANDARKER_COLOR_05="#C300B8"
- export JONATHANDARKER_COLOR_06="#8888CB"
- export JONATHANDARKER_COLOR_07="#A6B8C8"
- export JONATHANDARKER_COLOR_08="#6F686B"
- export JONATHANDARKER_COLOR_09="#B84116"
- export JONATHANDARKER_COLOR_10="#9DC351"
- export JONATHANDARKER_COLOR_11="#F0BD5A"
- export JONATHANDARKER_COLOR_12="#5999BF"
- export JONATHANDARKER_COLOR_13="#9E5190"
- export JONATHANDARKER_COLOR_14="#ADADFF"
- export JONATHANDARKER_COLOR_15="#EEEEEE"
- # [b]ack[g]round, [f]ore[g]round, [b]ackground [a]lt, [f]oreground [a]lt
- # For UI purposes, these values should be used, so that a basic light mode can
- # be implemented just by overriding these values.
- export JONATHANDARKER_COLOR_BG="$JONATHANDARKER_COLOR_00"
- export JONATHANDARKER_COLOR_BA="$JONATHANDARKER_COLOR_08"
- export JONATHANDARKER_COLOR_FG="$JONATHANDARKER_COLOR_07"
- export JONATHANDARKER_COLOR_FA="$JONATHANDARKER_COLOR_15"
|