From 7a248cfc1470ec29802123f9d834440b5fb3933a Mon Sep 17 00:00:00 2001 From: belak Date: Sun, 31 Mar 2024 01:13:15 +0000 Subject: [PATCH] deploy: 933907a9a1be2c384254ec4deb440fc2aef312f4 --- index.html | 211 ++++++++++++++++++++++++++++++++++++++++++ sparky.css | 12 +++ sparky.html | 40 ++++++++ tokyo-night-moon.css | 12 +++ tokyo-night-moon.html | 40 ++++++++ 5 files changed, 315 insertions(+) create mode 100644 sparky.css create mode 100644 sparky.html create mode 100644 tokyo-night-moon.css create mode 100644 tokyo-night-moon.html diff --git a/index.html b/index.html index 2904794..019c2b8 100644 --- a/index.html +++ b/index.html @@ -2948,6 +2948,20 @@ #base16-spacemacs .Special { color: #2d9574; } + #base16-sparky pre { white-space: pre-wrap; font-family: monospace; color: #f4f5f0; background-color: #072b31; } +#base16-sparky pre { font-family: monospace; color: #f4f5f0; background-color: #072b31; } +#base16-sparky * { font-size: 1em; } +#base16-sparky .Identifier { color: #f4f5f0; } +#base16-sparky .Statement { color: #ff585d; font-weight: bold; } +#base16-sparky .PreProc { color: #fbdd40; } +#base16-sparky .String { color: #78d64b; } +#base16-sparky .Conditional { color: #d59ed7; } +#base16-sparky .Number { color: #ff8f1c; } +#base16-sparky .Operator { color: #2dccd3; } +#base16-sparky .Comment { color: #003b49; font-style: italic; } +#base16-sparky .Special { color: #2dccd3; } + + #base16-standardized-dark pre { white-space: pre-wrap; font-family: monospace; color: #c0c0c0; background-color: #222222; } #base16-standardized-dark pre { font-family: monospace; color: #c0c0c0; background-color: #222222; } #base16-standardized-dark * { font-size: 1em; } @@ -3200,6 +3214,20 @@ #base16-tokyo-night-light .Special { color: #3e6968; } + #base16-tokyo-night-moon pre { white-space: pre-wrap; font-family: monospace; color: #3b4261; background-color: #222436; } +#base16-tokyo-night-moon pre { font-family: monospace; color: #3b4261; background-color: #222436; } +#base16-tokyo-night-moon * { font-size: 1em; } +#base16-tokyo-night-moon .Identifier { color: #3b4261; } +#base16-tokyo-night-moon .Statement { color: #ff757f; font-weight: bold; } +#base16-tokyo-night-moon .PreProc { color: #ffc777; } +#base16-tokyo-night-moon .String { color: #c3e88d; } +#base16-tokyo-night-moon .Conditional { color: #fca7ea; } +#base16-tokyo-night-moon .Number { color: #ffc777; } +#base16-tokyo-night-moon .Operator { color: #86e1fc; } +#base16-tokyo-night-moon .Comment { color: #636da6; font-style: italic; } +#base16-tokyo-night-moon .Special { color: #86e1fc; } + + #base16-tokyo-night-storm pre { white-space: pre-wrap; font-family: monospace; color: #a9b1d6; background-color: #24283b; } #base16-tokyo-night-storm pre { font-family: monospace; color: #a9b1d6; background-color: #24283b; } #base16-tokyo-night-storm * { font-size: 1em; } @@ -23038,6 +23066,97 @@

Base16 Gallery

+
+
+ +
system: "base16"
+name: "Sparky"
+author: "Leila Sother (https://github.com/mixcoac)"
+variant: "dark"
+palette:
+  base00: "072B31" # 546 C - Background
+  base01: "00313C" # 547 C - Lighter Background
+  base02: "003C46" # 547 CP - Selection
+  base03: "003B49" # 309 C - Comments
+  base04: "00778B" # 7705 C - Lightest Background 
+  base05: "F4F5F0" # 11-0601 Tcx - Foreground
+  base06: "F5F5F1" # P 179-1 U - Grey
+  base07: "FFFFFF" # Hex White - White - there is no whiter Pantone than 11-0601 Tcx
+  base08: "FF585D" # 178 C - Red
+  base09: "FF8F1C" # 1375 C - Orange
+  base0A: "FBDD40" # 114 C - Yellow
+  base0B: "78D64B" # 7488 C - Green
+  base0C: "2DCCD3" # 319 C - Cyan
+  base0D: "4698CB" # 7688 C - Blue
+  base0E: "D59ED7" # 7438 C - Purple
+  base0F: "9B704D" # 10367 C - Brown
+
+#!/bin/bash
+
+set -eu pipefail
+
+rm -rf out
+mkdir out
+
+rm -rf base16-vim
+git clone --depth=1 https://github.com/tinted-theming/base16-vim
+
+rm -rf schemes
+git clone --depth=1 https://github.com/tinted-theming/schemes
+
+export COLORSCHEMES=($(ls schemes/base16/ | grep yaml | sed 's/\..*$//'))
+
+for COLORSCHEME in ${COLORSCHEMES[@]}; do
+  echo $COLORSCHEME
+
+  vim -es -u NORC -N \
+    -c 'set termguicolors' \
+    -c 'set runtimepath+=base16-vim' \
+    -c 'syntax on' \
+    -c "colorscheme base16-$COLORSCHEME" \
+    -c 'TOhtml' \
+    -c 'wqall' \
+    $0 > /dev/null 2>&1
+
+  grep -Pzo '(?s)<style>.*</style>' $0.html \
+    | sed "3,14!d;s/body/pre/;s/^/#base16-$COLORSCHEME /" \
+    > out/$COLORSCHEME.css
+
+  awk "/<pre id='vimCodeElement'>/,/<\/pre>/" $0.html \
+    > out/$COLORSCHEME.html
+
+  rm -f $0.html
+done
+
+erb template.erb > out/index.html
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ sparky +
+
+
@@ -24696,6 +24815,98 @@

Base16 Gallery

+
+
+ +
system: "base16"
+name: "Tokyo Night Moon"
+author: "Ólafur Bjarki Bogason"
+variant: "dark"
+palette:
+  base00: "222436"
+  base01: "1e2030"
+  base02: "2d3f76"
+  base03: "636da6"
+  base04: "828bb8"
+  base05: "3b4261"
+  base06: "828bb8"
+  base07: "c8d3f5"
+  base08: "ff757f"
+  base09: "ffc777"
+  base0A: "ffc777"
+  base0B: "c3e88d"
+  base0C: "86e1fc"
+  base0D: "82aaff"
+  base0E: "fca7ea"
+  base0F: "c53b53"
+
+
+#!/bin/bash
+
+set -eu pipefail
+
+rm -rf out
+mkdir out
+
+rm -rf base16-vim
+git clone --depth=1 https://github.com/tinted-theming/base16-vim
+
+rm -rf schemes
+git clone --depth=1 https://github.com/tinted-theming/schemes
+
+export COLORSCHEMES=($(ls schemes/base16/ | grep yaml | sed 's/\..*$//'))
+
+for COLORSCHEME in ${COLORSCHEMES[@]}; do
+  echo $COLORSCHEME
+
+  vim -es -u NORC -N \
+    -c 'set termguicolors' \
+    -c 'set runtimepath+=base16-vim' \
+    -c 'syntax on' \
+    -c "colorscheme base16-$COLORSCHEME" \
+    -c 'TOhtml' \
+    -c 'wqall' \
+    $0 > /dev/null 2>&1
+
+  grep -Pzo '(?s)<style>.*</style>' $0.html \
+    | sed "3,14!d;s/body/pre/;s/^/#base16-$COLORSCHEME /" \
+    > out/$COLORSCHEME.css
+
+  awk "/<pre id='vimCodeElement'>/,/<\/pre>/" $0.html \
+    > out/$COLORSCHEME.html
+
+  rm -f $0.html
+done
+
+erb template.erb > out/index.html
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ tokyo-night-moon +
+
+
diff --git a/sparky.css b/sparky.css new file mode 100644 index 0000000..eba98d4 --- /dev/null +++ b/sparky.css @@ -0,0 +1,12 @@ +#base16-sparky pre { white-space: pre-wrap; font-family: monospace; color: #f4f5f0; background-color: #072b31; } +#base16-sparky pre { font-family: monospace; color: #f4f5f0; background-color: #072b31; } +#base16-sparky * { font-size: 1em; } +#base16-sparky .Identifier { color: #f4f5f0; } +#base16-sparky .Statement { color: #ff585d; font-weight: bold; } +#base16-sparky .PreProc { color: #fbdd40; } +#base16-sparky .String { color: #78d64b; } +#base16-sparky .Conditional { color: #d59ed7; } +#base16-sparky .Number { color: #ff8f1c; } +#base16-sparky .Operator { color: #2dccd3; } +#base16-sparky .Comment { color: #003b49; font-style: italic; } +#base16-sparky .Special { color: #2dccd3; } diff --git a/sparky.html b/sparky.html new file mode 100644 index 0000000..f279998 --- /dev/null +++ b/sparky.html @@ -0,0 +1,40 @@ +
+#!/bin/bash
+
+set -eu pipefail
+
+rm -rf out
+mkdir out
+
+rm -rf base16-vim
+git clone --depth=1 https://github.com/tinted-theming/base16-vim
+
+rm -rf schemes
+git clone --depth=1 https://github.com/tinted-theming/schemes
+
+export COLORSCHEMES=($(ls schemes/base16/ | grep yaml | sed 's/\..*$//'))
+
+for COLORSCHEME in ${COLORSCHEMES[@]}; do
+  echo $COLORSCHEME
+
+  vim -es -u NORC -N \
+    -c 'set termguicolors' \
+    -c 'set runtimepath+=base16-vim' \
+    -c 'syntax on' \
+    -c "colorscheme base16-$COLORSCHEME" \
+    -c 'TOhtml' \
+    -c 'wqall' \
+    $0 > /dev/null 2>&1
+
+  grep -Pzo '(?s)<style>.*</style>' $0.html \
+    | sed "3,14!d;s/body/pre/;s/^/#base16-$COLORSCHEME /" \
+    > out/$COLORSCHEME.css
+
+  awk "/<pre id='vimCodeElement'>/,/<\/pre>/" $0.html \
+    > out/$COLORSCHEME.html
+
+  rm -f $0.html
+done
+
+erb template.erb > out/index.html
+
diff --git a/tokyo-night-moon.css b/tokyo-night-moon.css new file mode 100644 index 0000000..5a0f131 --- /dev/null +++ b/tokyo-night-moon.css @@ -0,0 +1,12 @@ +#base16-tokyo-night-moon pre { white-space: pre-wrap; font-family: monospace; color: #3b4261; background-color: #222436; } +#base16-tokyo-night-moon pre { font-family: monospace; color: #3b4261; background-color: #222436; } +#base16-tokyo-night-moon * { font-size: 1em; } +#base16-tokyo-night-moon .Identifier { color: #3b4261; } +#base16-tokyo-night-moon .Statement { color: #ff757f; font-weight: bold; } +#base16-tokyo-night-moon .PreProc { color: #ffc777; } +#base16-tokyo-night-moon .String { color: #c3e88d; } +#base16-tokyo-night-moon .Conditional { color: #fca7ea; } +#base16-tokyo-night-moon .Number { color: #ffc777; } +#base16-tokyo-night-moon .Operator { color: #86e1fc; } +#base16-tokyo-night-moon .Comment { color: #636da6; font-style: italic; } +#base16-tokyo-night-moon .Special { color: #86e1fc; } diff --git a/tokyo-night-moon.html b/tokyo-night-moon.html new file mode 100644 index 0000000..f279998 --- /dev/null +++ b/tokyo-night-moon.html @@ -0,0 +1,40 @@ +
+#!/bin/bash
+
+set -eu pipefail
+
+rm -rf out
+mkdir out
+
+rm -rf base16-vim
+git clone --depth=1 https://github.com/tinted-theming/base16-vim
+
+rm -rf schemes
+git clone --depth=1 https://github.com/tinted-theming/schemes
+
+export COLORSCHEMES=($(ls schemes/base16/ | grep yaml | sed 's/\..*$//'))
+
+for COLORSCHEME in ${COLORSCHEMES[@]}; do
+  echo $COLORSCHEME
+
+  vim -es -u NORC -N \
+    -c 'set termguicolors' \
+    -c 'set runtimepath+=base16-vim' \
+    -c 'syntax on' \
+    -c "colorscheme base16-$COLORSCHEME" \
+    -c 'TOhtml' \
+    -c 'wqall' \
+    $0 > /dev/null 2>&1
+
+  grep -Pzo '(?s)<style>.*</style>' $0.html \
+    | sed "3,14!d;s/body/pre/;s/^/#base16-$COLORSCHEME /" \
+    > out/$COLORSCHEME.css
+
+  awk "/<pre id='vimCodeElement'>/,/<\/pre>/" $0.html \
+    > out/$COLORSCHEME.html
+
+  rm -f $0.html
+done
+
+erb template.erb > out/index.html
+