palette.sh 1.1 KB

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. # Base palette:
  3. export JONATHANDARKER_COLOR_00="#2B2B2B"
  4. export JONATHANDARKER_COLOR_01="#CC3135"
  5. export JONATHANDARKER_COLOR_02="#628854"
  6. export JONATHANDARKER_COLOR_03="#DA7317"
  7. export JONATHANDARKER_COLOR_04="#1A8AA4"
  8. export JONATHANDARKER_COLOR_05="#C300B8"
  9. export JONATHANDARKER_COLOR_06="#8888CB"
  10. export JONATHANDARKER_COLOR_07="#A6B8C8"
  11. export JONATHANDARKER_COLOR_08="#6F686B"
  12. export JONATHANDARKER_COLOR_09="#B84116"
  13. export JONATHANDARKER_COLOR_10="#9DC351"
  14. export JONATHANDARKER_COLOR_11="#F0BD5A"
  15. export JONATHANDARKER_COLOR_12="#5999BF"
  16. export JONATHANDARKER_COLOR_13="#9E5190"
  17. export JONATHANDARKER_COLOR_14="#ADADFF"
  18. export JONATHANDARKER_COLOR_15="#EEEEEE"
  19. # [b]ack[g]round, [f]ore[g]round, [b]ackground [a]lt, [f]oreground [a]lt
  20. # For UI purposes, these values should be used, so that a basic light mode can
  21. # be implemented just by overriding these values.
  22. export JONATHANDARKER_COLOR_BG="$JONATHANDARKER_COLOR_00"
  23. export JONATHANDARKER_COLOR_BA="$JONATHANDARKER_COLOR_08"
  24. export JONATHANDARKER_COLOR_FG="$JONATHANDARKER_COLOR_07"
  25. export JONATHANDARKER_COLOR_FA="$JONATHANDARKER_COLOR_15"