diff options
| author | 2021-03-05 14:57:17 -0500 | |
|---|---|---|
| committer | 2021-03-05 14:57:17 -0500 | |
| commit | db26946bd4f098bdd09565e2c5ef63c4d7ff53fd (patch) | |
| tree | e7e6921b5fd8cfcd65355a40a533b35e20908728 /colors | |
| parent | rename auto-generated LICENSE file to UNLICENSE (diff) | |
initial import of v1
Diffstat (limited to 'colors')
| -rw-r--r-- | colors/colors.sh | 29 | ||||
| -rwxr-xr-x | colors/foot.sh | 27 |
2 files changed, 56 insertions, 0 deletions
diff --git a/colors/colors.sh b/colors/colors.sh new file mode 100644 index 0000000..5267f87 --- /dev/null +++ b/colors/colors.sh @@ -0,0 +1,29 @@ +theme=starlight + +# define all of the colors in hex (rgb) +black=0D0D0D +brblack=242424 + +red=CF1745 +brred=FF1A53 + +green=73C322 +brgreen=8CFF1A + +yellow=CFCF17 +bryellow=ECFF1A + +blue=0BA6DA +brblue=1AC6FF + +magenta=D926AC +brmagenta=F53DC7 + +cyan=17CFA1 +brcyan=1AFFC6 + +white=E6E6E6 +brwhite=FFFFFF + +background=$brblack +foreground=$brwhite diff --git a/colors/foot.sh b/colors/foot.sh new file mode 100755 index 0000000..6ab66af --- /dev/null +++ b/colors/foot.sh @@ -0,0 +1,27 @@ +#!/bin/sh +. ./colors.sh + +cat <<HEREDOC +# $theme +[colors] +foreground = $foreground +background = $background + +regular0 = $black +regular1 = $red +regular2 = $green +regular3 = $yellow +regular4 = $blue +regular5 = $magenta +regular6 = $cyan +regular7 = $white + +bright0 = $brblack +bright1 = $brred +bright2 = $brgreen +bright3 = $bryellow +bright4 = $brblue +bright5 = $brmagenta +bright6 = $brcyan +bright7 = $brwhite +HEREDOC |
