commit 1ecf830cc6608551d076b2d2b7465ec2c1d0c7f7 Author: Dakedres Date: Wed Mar 20 14:47:27 2024 -0600 Initial commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ce9581e --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "lib/mo"] + path = lib/mo + url = https://github.com/tests-always-included/mo diff --git a/README.md b/README.md new file mode 100644 index 0000000..01b660f --- /dev/null +++ b/README.md @@ -0,0 +1,58 @@ +# Shchemes +Automatically theming your apps with the power of the shell. + +## Why +Shchemes will support any theme format, app, or scheme you want, with a little leg work. +It is less than 300 lines. It can go anywhere bash will, and will comfortably live in +your dotfiles. Compare with [tinty](https://github.com/tinted-theming/tinty). + +## Installation +Clone the repo and add symlink it to somewhere in your PATH. Pick your poison +``` +ln -s $PWD/shchemes ~/bin/shchemes +ln -s $PWD/shchemes ~/.local/bin/shchemes +``` + +Install your favorite base16 themes from tinted-themes: +``` +shchemes install_tinted_scheme monokai +``` + +If you just want a bunch of themes to play with, try installing them all: +``` +shchemes install_all_tinted_schemes +``` + +## Usage +Shchemes can be used as a command or sourced to gain access to it's underlying functions. + +In the terminal: +```sh +shchemes --scheme=base16:monokai create_theme kitty >> ~/.config/kitty/kitty.conf +``` +If you want to be able to hotswap themes, you'll probably need to use injection. +```sh +echo "#START SHCHEMES BLOCK : create_theme kitty" >> ~/.config/kitty/kitty.conf +shchemes --scheme=base16:monokai inject ~/.config/kitty/kitty.conf +``` + +In a script: +```bash +source shchemes --scheme=base16:monokai + +inject "$HOME/.config/alacritty/alacritty.toml" +inject "$HOME/.config/rofi/config.rasi" + +bspwm_theme="$HOME/.config/bspwm/colors" +create_theme bspwm > "$bspwm_theme" +"$bspwm_theme" +``` +Note you'll have to add all the comments for where to place the injections + +See the [cookbook](./doc/cookbook.md) for some ideas on ways to use Shchemes. + +## Credits +This software is a work of opportunism + +- mo - Mustache templates in bash. Shchemes wouldn't be possible without it. +- tinted-theming/schemes - Pretty much all the base16 themes \ No newline at end of file diff --git a/base16/convert_scheme.sh b/base16/convert_scheme.sh new file mode 100755 index 0000000..e07abb8 --- /dev/null +++ b/base16/convert_scheme.sh @@ -0,0 +1,6 @@ +#!/bin/sh +awk -F ' *: *' ' +/^#/ { print } +$1 ~ "palette" { p = 1; next } +p && /^ +/ { gsub(/ /, "", $1); print $1 "=" $2 } +' $1 diff --git a/base16/install.sh b/base16/install.sh new file mode 100755 index 0000000..0b3347e --- /dev/null +++ b/base16/install.sh @@ -0,0 +1,9 @@ +echo ' +https://raw.githubusercontent.com/tinted-theming/base16-qutebrowser/main/templates/default.mustache qutebrowser +https://raw.githubusercontent.com/tinted-theming/base16-qutebrowser/main/templates/minimal.mustache qutebrowser-minimal +https://raw.githubusercontent.com/tinted-theming/base16-rofi/master/templates/default.mustache rofi +https://raw.githubusercontent.com/tinted-theming/base16-rofi/master/templates/minimal.mustache rofi-minimal +https://raw.githubusercontent.com/aarowill/base16-alacritty/master/templates/default.mustache alacritty +' | awk ' +/^http/ { system("shchemes install_tinted_template " $1 " " $2) } +' diff --git a/base16/install_scheme.sh b/base16/install_scheme.sh new file mode 100755 index 0000000..e9f0fda --- /dev/null +++ b/base16/install_scheme.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +NAME=$1 +URL=https://raw.githubusercontent.com/tinted-theming/schemes/master/base16/$NAME.yaml + +cd $(dirname $(readlink -f $0)) +curl $URL | sh ./convert_scheme.sh > ./schemes/$NAME.properties diff --git a/base16/schemes/3024.properties b/base16/schemes/3024.properties new file mode 100644 index 0000000..1483c64 --- /dev/null +++ b/base16/schemes/3024.properties @@ -0,0 +1,17 @@ +# 3024 scheme for the Base16 Builder (https://github.com/chriskempson/base16-builder) +base00="090300" # ---- +base01="3a3432" # --- +base02="4a4543" # -- +base03="5c5855" # - +base04="807d7c" # + +base05="a5a2a2" # ++ +base06="d6d5d4" # +++ +base07="f7f7f7" # ++++ +base08="db2d20" # red +base09="e8bbd0" # orange +base0A="fded02" # yellow +base0B="01a252" # green +base0C="b5e4f4" # aqua +base0D="01a0e4" # blue +base0E="a16a94" # purple +base0F="cdab53" # brown diff --git a/base16/schemes/apathy.properties b/base16/schemes/apathy.properties new file mode 100644 index 0000000..6d993e8 --- /dev/null +++ b/base16/schemes/apathy.properties @@ -0,0 +1,17 @@ +# Apathy scheme for the Base16 Builder (https://github.com/chriskempson/base16-builder) +base00="031A16" +base01="0B342D" +base02="184E45" +base03="2B685E" +base04="5F9C92" +base05="81B5AC" +base06="A7CEC8" +base07="D2E7E4" +base08="3E9688" +base09="3E7996" +base0A="3E4C96" +base0B="883E96" +base0C="963E4C" +base0D="96883E" +base0E="4C963E" +base0F="3E965B" diff --git a/base16/schemes/asdf.properties b/base16/schemes/asdf.properties new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/base16/schemes/asdf.properties @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/base16/schemes/atelier-dune-light.properties b/base16/schemes/atelier-dune-light.properties new file mode 100644 index 0000000..38621ca --- /dev/null +++ b/base16/schemes/atelier-dune-light.properties @@ -0,0 +1,16 @@ +base00="fefbec" +base01="e8e4cf" +base02="a6a28c" +base03="999580" +base04="7d7a68" +base05="6e6b5e" +base06="292824" +base07="20201d" +base08="d73737" +base09="b65611" +base0A="ae9513" +base0B="60ac39" +base0C="1fad83" +base0D="6684e1" +base0E="b854d4" +base0F="d43552" diff --git a/base16/schemes/atelier-savanna-light.properties b/base16/schemes/atelier-savanna-light.properties new file mode 100644 index 0000000..8c1e739 --- /dev/null +++ b/base16/schemes/atelier-savanna-light.properties @@ -0,0 +1,16 @@ +base00="ecf4ee" +base01="dfe7e2" +base02="87928a" +base03="78877d" +base04="5f6d64" +base05="526057" +base06="232a25" +base07="171c19" +base08="b16139" +base09="9f713c" +base0A="a07e3b" +base0B="489963" +base0C="1c9aa0" +base0D="478c90" +base0E="55859b" +base0F="867469" diff --git a/base16/schemes/ayu-dark.properties b/base16/schemes/ayu-dark.properties new file mode 100644 index 0000000..936dbdf --- /dev/null +++ b/base16/schemes/ayu-dark.properties @@ -0,0 +1,16 @@ +base00="0F1419" +base01="131721" +base02="272D38" +base03="3E4B59" +base04="BFBDB6" +base05="E6E1CF" +base06="E6E1CF" +base07="F3F4F5" +base08="F07178" +base09="FF8F40" +base0A="FFB454" +base0B="B8CC52" +base0C="95E6CB" +base0D="59C2FF" +base0E="D2A6FF" +base0F="E6B673" diff --git a/base16/schemes/ayu-light.properties b/base16/schemes/ayu-light.properties new file mode 100644 index 0000000..4261101 --- /dev/null +++ b/base16/schemes/ayu-light.properties @@ -0,0 +1,16 @@ +base00="FAFAFA" +base01="F3F4F5" +base02="F8F9FA" +base03="ABB0B6" +base04="828C99" +base05="5C6773" +base06="242936" +base07="1A1F29" +base08="F07178" +base09="FA8D3E" +base0A="F2AE49" +base0B="86B300" +base0C="4CBF99" +base0D="36A3D9" +base0E="A37ACC" +base0F="E6BA7E" diff --git a/base16/schemes/black-metal-burzum.properties b/base16/schemes/black-metal-burzum.properties new file mode 100644 index 0000000..864c5d0 --- /dev/null +++ b/base16/schemes/black-metal-burzum.properties @@ -0,0 +1,16 @@ +base00="000000" +base01="121212" +base02="222222" +base03="333333" +base04="999999" +base05="c1c1c1" +base06="999999" +base07="c1c1c1" +base08="5f8787" +base09="aaaaaa" +base0A="99bbaa" +base0B="ddeecc" +base0C="aaaaaa" +base0D="888888" +base0E="999999" +base0F="444444" diff --git a/base16/schemes/blueforest.properties b/base16/schemes/blueforest.properties new file mode 100644 index 0000000..e028bd3 --- /dev/null +++ b/base16/schemes/blueforest.properties @@ -0,0 +1,16 @@ +base00="141F2E" +base01="1e5c1e" +base02="273e5c" +base03="a0ffa0" +base04="1e5c1e" +base05="FFCC33" +base06="91CCFF" +base07="375780" +base08="fffab1" +base09="FF8080" +base0A="91CCFF" +base0B="80ff80" +base0C="80ff80" +base0D="a2cff5" +base0E="0099FF" +base0F="e7e7e7" diff --git a/base16/schemes/brushtrees-dark.properties b/base16/schemes/brushtrees-dark.properties new file mode 100644 index 0000000..12e9abe --- /dev/null +++ b/base16/schemes/brushtrees-dark.properties @@ -0,0 +1,16 @@ +base00="485867" +base01="5A6D7A" +base02="6D828E" +base03="8299A1" +base04="98AFB5" +base05="B0C5C8" +base06="C9DBDC" +base07="E3EFEF" +base08="b38686" +base09="d8bba2" +base0A="aab386" +base0B="87b386" +base0C="86b3b3" +base0D="868cb3" +base0E="b386b2" +base0F="b39f9f" diff --git a/base16/schemes/brushtrees.properties b/base16/schemes/brushtrees.properties new file mode 100644 index 0000000..739649e --- /dev/null +++ b/base16/schemes/brushtrees.properties @@ -0,0 +1,16 @@ +base00="E3EFEF" +base01="C9DBDC" +base02="B0C5C8" +base03="98AFB5" +base04="8299A1" +base05="6D828E" +base06="5A6D7A" +base07="485867" +base08="b38686" +base09="d8bba2" +base0A="aab386" +base0B="87b386" +base0C="86b3b3" +base0D="868cb3" +base0E="b386b2" +base0F="b39f9f" diff --git a/base16/schemes/caroline.properties b/base16/schemes/caroline.properties new file mode 100644 index 0000000..011ef8f --- /dev/null +++ b/base16/schemes/caroline.properties @@ -0,0 +1,16 @@ +base00="1c1213" +base01="3a2425" +base02="563837" +base03="6d4745" +base04="8b5d57" +base05="a87569" +base06="c58d7b" +base07="e3a68c" +base08="c24f57" +base09="a63650" +base0A="f28171" +base0B="806c61" +base0C="6b6566" +base0D="684c59" +base0E="a63650" +base0F="893f45" diff --git a/base16/schemes/chalk.properties b/base16/schemes/chalk.properties new file mode 100644 index 0000000..27a9ad2 --- /dev/null +++ b/base16/schemes/chalk.properties @@ -0,0 +1,16 @@ +base00="151515" +base01="202020" +base02="303030" +base03="505050" +base04="b0b0b0" +base05="d0d0d0" +base06="e0e0e0" +base07="f5f5f5" +base08="fb9fb1" +base09="eda987" +base0A="ddb26f" +base0B="acc267" +base0C="12cfc0" +base0D="6fc2ef" +base0E="e1a3ee" +base0F="deaf8f" diff --git a/base16/schemes/da-one-paper.properties b/base16/schemes/da-one-paper.properties new file mode 100644 index 0000000..41b9571 --- /dev/null +++ b/base16/schemes/da-one-paper.properties @@ -0,0 +1,16 @@ +base00="faf0dc" +base01="c8c8c8" +base02="888888" +base03="585858" +base04="282828" +base05="181818" +base06="000000" +base07="000000" +base08="de5d6e" +base09="ff9470" +base0A="b3684f" +base0B="76a85d" +base0C="64b5a7" +base0D="5890f8" +base0E="c173d1" +base0F="b3684f" diff --git a/base16/schemes/dirtysea.properties b/base16/schemes/dirtysea.properties new file mode 100644 index 0000000..9a69f6f --- /dev/null +++ b/base16/schemes/dirtysea.properties @@ -0,0 +1,16 @@ +base00="e0e0e0" # (light grey) Default Background +base01="d0dad0" # (light green) Lighter Background (Used for status bars) +base02="d0d0d0" # (darker grey) Selection Background +base03="707070" # (dark grey) Comments, Invisibles, Line Highlighting +base04="202020" # Dark Foreground (Used for status bars) +base05="000000" # Default Foreground, Caret, Delimiters, Operators +base06="f8f8f8" # Light Foreground (Not often used) +base07="c4d9c4" # (light-green) Light Background (Not often used) +base08="840000" # (red) Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted +base09="006565" # (cyan) Integers, Boolean, Constants, XML Attributes, Markup Link Url +base0A="755B00" # (brown) Classes, Markup Bold, Search Text Background +base0B="730073" # (purple) Strings, Inherited Class, Markup Code, Diff Inserted +base0C="755B00" # (brown) Support, Regular Expressions, Escape Characters, Markup Quotes +base0D="007300" # (green) Functions, Methods, Attribute IDs, Headings +base0E="000090" # (blue) Keywords, Storage, Selector, Markup Italic, Diff Changed +base0F="755B00" # (brown) Deprecated, Opening/Closing Embedded Language Tags, e.g. diff --git a/base16/schemes/emil.properties b/base16/schemes/emil.properties new file mode 100644 index 0000000..e5e3c6c --- /dev/null +++ b/base16/schemes/emil.properties @@ -0,0 +1,16 @@ +base00="efefef" +base01="bebed2" +base02="9e9eaf" +base03="7c7c98" +base04="505063" +base05="313145" +base06="22223a" +base07="1a1a2f" +base08="f43979" +base09="d22a8b" +base0A="ff669b" +base0B="0073a8" +base0C="2155d6" +base0D="471397" +base0E="6916b6" +base0F="8d17a5" diff --git a/base16/schemes/github.properties b/base16/schemes/github.properties new file mode 100644 index 0000000..17b3e09 --- /dev/null +++ b/base16/schemes/github.properties @@ -0,0 +1,16 @@ +base00="ffffff" +base01="f5f5f5" +base02="c8c8fa" +base03="969896" +base04="e8e8e8" +base05="333333" +base06="ffffff" +base07="ffffff" +base08="ed6a43" +base09="0086b3" +base0A="795da3" +base0B="183691" +base0C="183691" +base0D="795da3" +base0E="a71d5d" +base0F="333333" diff --git a/base16/schemes/gradf.properties b/base16/schemes/gradf.properties new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/base16/schemes/gradf.properties @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/base16/schemes/gruvbo.properties b/base16/schemes/gruvbo.properties new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/base16/schemes/gruvbo.properties @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/base16/schemes/gruvbox-dark-hard.properties b/base16/schemes/gruvbox-dark-hard.properties new file mode 100644 index 0000000..763da49 --- /dev/null +++ b/base16/schemes/gruvbox-dark-hard.properties @@ -0,0 +1,16 @@ +base00="1d2021" # ---- +base01="3c3836" # --- +base02="504945" # -- +base03="665c54" # - +base04="bdae93" # + +base05="d5c4a1" # ++ +base06="ebdbb2" # +++ +base07="fbf1c7" # ++++ +base08="fb4934" # red +base09="fe8019" # orange +base0A="fabd2f" # yellow +base0B="b8bb26" # green +base0C="8ec07c" # aqua/cyan +base0D="83a598" # blue +base0E="d3869b" # purple +base0F="d65d0e" # brown diff --git a/base16/schemes/gruvbox-light-soft.properties b/base16/schemes/gruvbox-light-soft.properties new file mode 100644 index 0000000..6d69075 --- /dev/null +++ b/base16/schemes/gruvbox-light-soft.properties @@ -0,0 +1,16 @@ +base00="f2e5bc" # ---- +base01="ebdbb2" # --- +base02="d5c4a1" # -- +base03="bdae93" # - +base04="665c54" # + +base05="504945" # ++ +base06="3c3836" # +++ +base07="282828" # ++++ +base08="9d0006" # red +base09="af3a03" # orange +base0A="b57614" # yellow +base0B="79740e" # green +base0C="427b58" # aqua/cyan +base0D="076678" # blue +base0E="8f3f71" # purple +base0F="d65d0e" # brown diff --git a/base16/schemes/gruvbox.properties b/base16/schemes/gruvbox.properties new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/base16/schemes/gruvbox.properties @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/base16/schemes/harmonic16-dark.properties b/base16/schemes/harmonic16-dark.properties new file mode 100644 index 0000000..e965ac1 --- /dev/null +++ b/base16/schemes/harmonic16-dark.properties @@ -0,0 +1,17 @@ +# generated with harmonic16 (https://github.com/janniks/harmonic16) +base00="0b1c2c" +base01="223b54" +base02="405c79" +base03="627e99" +base04="aabcce" +base05="cbd6e2" +base06="e5ebf1" +base07="f7f9fb" +base08="bf8b56" +base09="bfbf56" +base0A="8bbf56" +base0B="56bf8b" +base0C="568bbf" +base0D="8b56bf" +base0E="bf568b" +base0F="bf5656" diff --git a/base16/schemes/harmonic16-light.properties b/base16/schemes/harmonic16-light.properties new file mode 100644 index 0000000..60cad9f --- /dev/null +++ b/base16/schemes/harmonic16-light.properties @@ -0,0 +1,17 @@ +# generated with harmonic16 (https://github.com/janniks/harmonic16) +base00="f7f9fb" +base01="e5ebf1" +base02="cbd6e2" +base03="aabcce" +base04="627e99" +base05="405c79" +base06="223b54" +base07="0b1c2c" +base08="bf8b56" +base09="bfbf56" +base0A="8bbf56" +base0B="56bf8b" +base0C="568bbf" +base0D="8b56bf" +base0E="bf568b" +base0F="bf5656" diff --git a/base16/schemes/heetch-lght.properties b/base16/schemes/heetch-lght.properties new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/base16/schemes/heetch-lght.properties @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/base16/schemes/heetch-light.properties b/base16/schemes/heetch-light.properties new file mode 100644 index 0000000..dfa2cc4 --- /dev/null +++ b/base16/schemes/heetch-light.properties @@ -0,0 +1,16 @@ +base00="feffff" +base01="392551" +base02="7b6d8b" +base03="9c92a8" +base04="ddd6e5" +base05="5a496e" +base06="470546" +base07="190134" +base08="27d9d5" +base09="bdb6c5" +base0A="5ba2b6" +base0B="f80059" +base0C="c33678" +base0D="47f9f5" +base0E="bd0152" +base0F="dedae2" diff --git a/base16/schemes/heetch.properties b/base16/schemes/heetch.properties new file mode 100644 index 0000000..0203023 --- /dev/null +++ b/base16/schemes/heetch.properties @@ -0,0 +1,16 @@ +base00="190134" +base01="392551" +base02="5A496E" +base03="7B6D8B" +base04="9C92A8" +base05="BDB6C5" +base06="DEDAE2" +base07="FEFFFF" +base08="27D9D5" +base09="5BA2B6" +base0A="8F6C97" +base0B="C33678" +base0C="F80059" +base0D="BD0152" +base0E="82034C" +base0F="470546" diff --git a/base16/schemes/horizon-terminal-dark.properties b/base16/schemes/horizon-terminal-dark.properties new file mode 100644 index 0000000..9e51a5d --- /dev/null +++ b/base16/schemes/horizon-terminal-dark.properties @@ -0,0 +1,16 @@ +base00="1C1E26" +base01="232530" +base02="2E303E" +base03="6F6F70" +base04="9DA0A2" +base05="CBCED0" +base06="DCDFE4" +base07="E3E6EE" +base08="E95678" +base09="FAB795" +base0A="FAC29A" +base0B="29D398" +base0C="59E1E3" +base0D="26BBD9" +base0E="EE64AC" +base0F="F09383" diff --git a/base16/schemes/horizon-terminal-light.properties b/base16/schemes/horizon-terminal-light.properties new file mode 100644 index 0000000..ba89380 --- /dev/null +++ b/base16/schemes/horizon-terminal-light.properties @@ -0,0 +1,16 @@ +base00="FDF0ED" +base01="FADAD1" +base02="F9CBBE" +base03="BDB3B1" +base04="948C8A" +base05="403C3D" +base06="302C2D" +base07="201C1D" +base08="E95678" +base09="F9CEC3" +base0A="FADAD1" +base0B="29D398" +base0C="59E1E3" +base0D="26BBD9" +base0E="EE64AC" +base0F="F9CBBE" diff --git a/base16/schemes/humanoid-light.properties b/base16/schemes/humanoid-light.properties new file mode 100644 index 0000000..b34186d --- /dev/null +++ b/base16/schemes/humanoid-light.properties @@ -0,0 +1,16 @@ +base00="f8f8f2" # #f8f8f2 ---- +base01="efefe9" # #efefe9 --- +base02="deded8" # #deded8 -- +base03="c0c0bd" # #c0c0bd - +base04="60615d" # #60615d + +base05="232629" # #232629 ++ +base06="2f3337" # #2f3337 +++ +base07="070708" # #070708 ++++ +base08="b0151a" # #b0151a red +base09="ff3d00" # #ff3d00 orange +base0A="ffb627" # #ffb627 yellow +base0B="388e3c" # #388e3c green +base0C="008e8e" # #008e8e aqua/cyan +base0D="0082c9" # #0082c9 blue +base0E="700f98" # #700f98 purple +base0F="b27701" # #b27701 brown diff --git a/base16/schemes/kaolin-dark.properties b/base16/schemes/kaolin-dark.properties new file mode 100644 index 0000000..5d6ca09 --- /dev/null +++ b/base16/schemes/kaolin-dark.properties @@ -0,0 +1,18 @@ +# Kaolin-dark scheme by alternateved (http://github.com/alternateved) +# Inspired by (https://github.com/ogdenwebb/emacs-kaolin-themes) +base00="18181B" +base01="222225" +base02="4B5254" +base03="545C5E" +base04="879193" +base05="9ba5a7" +base06="d0d0d4" +base07="E4E4E8" +base08="CD5C60" +base09="DBAC66" +base0A="F2C866" +base0B="6FB593" +base0C="4D9391" +base0D="91B9C7" +base0E="845A84" +base0F="E36D5B" diff --git a/base16/schemes/measured-dark.properties b/base16/schemes/measured-dark.properties new file mode 100644 index 0000000..6ab688b --- /dev/null +++ b/base16/schemes/measured-dark.properties @@ -0,0 +1,16 @@ +base00="00211f" +base01="003a38" +base02="005453" +base03="ababab" +base04="c3c3c3" +base05="dcdcdc" +base06="efefef" +base07="f5f5f5" +base08="ce7e8e" +base09="dca37c" +base0A="bfac4e" +base0B="56c16f" +base0C="62c0be" +base0D="88b0da" +base0E="b39be0" +base0F="d89aba" diff --git a/base16/schemes/monokai.properties b/base16/schemes/monokai.properties new file mode 100644 index 0000000..9d9e230 --- /dev/null +++ b/base16/schemes/monokai.properties @@ -0,0 +1,16 @@ +base00="272822" +base01="383830" +base02="49483e" +base03="75715e" +base04="a59f85" +base05="f8f8f2" +base06="f5f4f1" +base07="f9f8f5" +base08="f92672" +base09="fd971f" +base0A="f4bf75" +base0B="a6e22e" +base0C="a1efe4" +base0D="66d9ef" +base0E="ae81ff" +base0F="cc6633" diff --git a/base16/schemes/monokai.sh b/base16/schemes/monokai.sh new file mode 100644 index 0000000..9d9e230 --- /dev/null +++ b/base16/schemes/monokai.sh @@ -0,0 +1,16 @@ +base00="272822" +base01="383830" +base02="49483e" +base03="75715e" +base04="a59f85" +base05="f8f8f2" +base06="f5f4f1" +base07="f9f8f5" +base08="f92672" +base09="fd971f" +base0A="f4bf75" +base0B="a6e22e" +base0C="a1efe4" +base0D="66d9ef" +base0E="ae81ff" +base0F="cc6633" diff --git a/base16/schemes/outrun-dark.properties b/base16/schemes/outrun-dark.properties new file mode 100644 index 0000000..5c88946 --- /dev/null +++ b/base16/schemes/outrun-dark.properties @@ -0,0 +1,16 @@ +base00="00002A" +base01="20204A" +base02="30305A" +base03="50507A" +base04="B0B0DA" +base05="D0D0FA" +base06="E0E0FF" +base07="F5F5FF" +base08="FF4242" +base09="FC8D28" +base0A="F3E877" +base0B="59F176" +base0C="0EF0F0" +base0D="66B0FF" +base0E="F10596" +base0F="F003EF" diff --git a/base16/schemes/outrun.properties b/base16/schemes/outrun.properties new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/base16/schemes/outrun.properties @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/base16/schemes/oxocarbon-dark.properties b/base16/schemes/oxocarbon-dark.properties new file mode 100644 index 0000000..51ffa3d --- /dev/null +++ b/base16/schemes/oxocarbon-dark.properties @@ -0,0 +1,16 @@ +base00="161616" +base01="262626" +base02="393939" +base03="525252" +base04="dde1e6" +base05="f2f4f8" +base06="ffffff" +base07="08bdba" +base08="3ddbd9" +base09="78a9ff" +base0A="ee5396" +base0B="33b1ff" +base0C="ff7eb6" +base0D="42be65" +base0E="be95ff" +base0F="82cfff" diff --git a/base16/schemes/oxocarbon-light.properties b/base16/schemes/oxocarbon-light.properties new file mode 100644 index 0000000..19d2171 --- /dev/null +++ b/base16/schemes/oxocarbon-light.properties @@ -0,0 +1,16 @@ +base00="f2f4f8" +base01="dde1e6" +base02="525252" +base03="161616" +base04="262626" +base05="393939" +base06="525252" +base07="08bdba" +base08="ff7eb6" +base09="ee5396" +base0A="FF6F00" +base0B="0f62fe" +base0C="673AB7" +base0D="42be65" +base0E="be95ff" +base0F="37474F" diff --git a/base16/schemes/pasque.properties b/base16/schemes/pasque.properties new file mode 100644 index 0000000..c0e0f28 --- /dev/null +++ b/base16/schemes/pasque.properties @@ -0,0 +1,16 @@ +base00="271C3A" +base01="100323" +base02="3E2D5C" +base03="5D5766" +base04="BEBCBF" +base05="DEDCDF" +base06="EDEAEF" +base07="BBAADD" +base08="A92258" #Pink +base09="918889" #Gray +base0A="804ead" #Pasque +base0B="C6914B" #Gold +base0C="7263AA" #Lavender +base0D="8E7DC6" #Blue +base0E="953B9D" #Violet +base0F="59325C" #Magenta diff --git a/base16/schemes/pico.properties b/base16/schemes/pico.properties new file mode 100644 index 0000000..ca99903 --- /dev/null +++ b/base16/schemes/pico.properties @@ -0,0 +1,16 @@ +base00="000000" +base01="1d2b53" +base02="7e2553" +base03="008751" +base04="ab5236" +base05="5f574f" +base06="c2c3c7" +base07="fff1e8" +base08="ff004d" +base09="ffa300" +base0A="fff024" +base0B="00e756" +base0C="29adff" +base0D="83769c" +base0E="ff77a8" +base0F="ffccaa" diff --git a/base16/schemes/rose-pine-dawn.properties b/base16/schemes/rose-pine-dawn.properties new file mode 100644 index 0000000..f8dff21 --- /dev/null +++ b/base16/schemes/rose-pine-dawn.properties @@ -0,0 +1,16 @@ +base00="faf4ed" +base01="fffaf3" +base02="f2e9de" +base03="9893a5" +base04="797593" +base05="575279" +base06="575279" +base07="cecacd" +base08="b4637a" +base09="ea9d34" +base0A="d7827e" +base0B="286983" +base0C="56949f" +base0D="907aa9" +base0E="ea9d34" +base0F="cecacd" diff --git a/base16/schemes/rose-pine-moon.properties b/base16/schemes/rose-pine-moon.properties new file mode 100644 index 0000000..3f13a19 --- /dev/null +++ b/base16/schemes/rose-pine-moon.properties @@ -0,0 +1,16 @@ +base00="232136" +base01="2a273f" +base02="393552" +base03="6e6a86" +base04="908caa" +base05="e0def4" +base06="e0def4" +base07="56526e" +base08="eb6f92" +base09="f6c177" +base0A="ea9a97" +base0B="3e8fb0" +base0C="9ccfd8" +base0D="c4a7e7" +base0E="f6c177" +base0F="56526e" diff --git a/base16/schemes/rose-pine.properties b/base16/schemes/rose-pine.properties new file mode 100644 index 0000000..63f8378 --- /dev/null +++ b/base16/schemes/rose-pine.properties @@ -0,0 +1,16 @@ +base00="191724" +base01="1f1d2e" +base02="26233a" +base03="6e6a86" +base04="908caa" +base05="e0def4" +base06="e0def4" +base07="524f67" +base08="eb6f92" +base09="f6c177" +base0A="ebbcba" +base0B="31748f" +base0C="9ccfd8" +base0D="c4a7e7" +base0E="f6c177" +base0F="524f67" diff --git a/base16/schemes/saga.properties b/base16/schemes/saga.properties new file mode 100644 index 0000000..bf7c600 --- /dev/null +++ b/base16/schemes/saga.properties @@ -0,0 +1,16 @@ +base00="05080a" # Obsidian +base01="0a1014" # Liquorice +base02="0f181e" # Charcoal +base03="141f27" # Asphalt +base04="192630" # Gunmetal +base05="dce2f7" # Marshmallow +base06="f8eae7" # Linen +base07="ccd3fe" # Lavender +base08="ffd4e9" # Azalea +base09="fbcbae" # Apricot +base0A="fbebc8" # Blond +base0B="f7ddff" # Lace +base0C="c5edc1" # Tea +base0D="c9fff7" # Celeste +base0E="dcc3f9" # Anemone +base0F="f6dddd" # Lycoris diff --git a/base16/schemes/seti.properties b/base16/schemes/seti.properties new file mode 100644 index 0000000..c3503dc --- /dev/null +++ b/base16/schemes/seti.properties @@ -0,0 +1,17 @@ +# Base16 Builder scheme by #! +base00="151718" +base01="282a2b" +base02="3B758C" +base03="41535B" +base04="43a5d5" +base05="d6d6d6" +base06="eeeeee" +base07="ffffff" +base08="Cd3f45" +base09="db7b55" +base0A="e6cd69" +base0B="9fca56" +base0C="55dbbe" +base0D="55b5db" +base0E="a074c4" +base0F="8a553f" diff --git a/base16/schemes/shades-of-purple.properties b/base16/schemes/shades-of-purple.properties new file mode 100644 index 0000000..27b0e00 --- /dev/null +++ b/base16/schemes/shades-of-purple.properties @@ -0,0 +1,16 @@ +base00="1e1e3f" # default background +base01="43d426" # lighter background (status bar) +base02="f1d000" # selection background +base03="808080" # comments, invisibles +base04="6871ff" # dark foreground (status bar) +base05="c7c7c7" # default foreground +base06="ff77ff" # light foreground +base07="ffffff" # light background +base08="d90429" # variables +base09="f92a1c" # constants +base0A="ffe700" # search text background +base0B="3ad900" # strings +base0C="00c5c7" # regex, escaped chars +base0D="6943ff" # functions +base0E="ff2c70" # keywords +base0F="79e8fb" # deprecations diff --git a/base16/schemes/shadesmear-dark.properties b/base16/schemes/shadesmear-dark.properties new file mode 100644 index 0000000..94b79c4 --- /dev/null +++ b/base16/schemes/shadesmear-dark.properties @@ -0,0 +1,16 @@ +base00="232323" +base01="1C1C1C" +base02="4E4E4E" +base03="C0C0C0" +base04="E4E4E4" +base05="DBDBDB" +base06="E4E4E4" +base07="1C1C1C" +base08="CC5450" +base09="A64270" +base0A="307878" +base0B="71983B" +base0C="C57D42" +base0D="376388" +base0E="D7AB54" +base0F="6D6D6D" diff --git a/base16/schemes/shadesmear-light.properties b/base16/schemes/shadesmear-light.properties new file mode 100644 index 0000000..a6f170f --- /dev/null +++ b/base16/schemes/shadesmear-light.properties @@ -0,0 +1,16 @@ +base00="DBDBDB" +base01="E4E4E4" +base02="C0C0C0" +base03="4E4E4E" +base04="1C1C1C" +base05="232323" +base06="1C1C1C" +base07="E4E4E4" +base08="CC5450" +base09="A64270" +base0A="307878" +base0B="71983B" +base0C="C57D42" +base0D="376388" +base0E="D7AB54" +base0F="6D6D6D" diff --git a/base16/schemes/still-alive.properties b/base16/schemes/still-alive.properties new file mode 100644 index 0000000..66047bb --- /dev/null +++ b/base16/schemes/still-alive.properties @@ -0,0 +1,16 @@ +base00="F0F0F0" +base01="F0D848" +base02="FFF018" +base03="F01818" +base04="F00000" +base05="D80000" +base06="489000" +base07="30A860" +base08="487830" +base09="183048" +base0A="426395" +base0B="5C5C6A" +base0C="2C3C57" +base0D="001878" +base0E="900000" +base0F="140C0D" diff --git a/base16/schemes/synth-midnight-dark.properties b/base16/schemes/synth-midnight-dark.properties new file mode 100644 index 0000000..31c0b5e --- /dev/null +++ b/base16/schemes/synth-midnight-dark.properties @@ -0,0 +1,16 @@ +base00="050608" +base01="1a1b1c" +base02="28292a" +base03="474849" +base04="a3a5a6" +base05="c1c3c4" +base06="cfd1d2" +base07="dddfe0" +base08="b53b50" +base09="ea770d" +base0A="c9d364" +base0B="06ea61" +base0C="42fff9" +base0D="03aeff" +base0E="ea5ce2" +base0F="cd6320" diff --git a/base16/schemes/tango.properties b/base16/schemes/tango.properties new file mode 100644 index 0000000..237fa05 --- /dev/null +++ b/base16/schemes/tango.properties @@ -0,0 +1,16 @@ +base00="2e3436" +base01="8ae234" +base02="fce94f" +base03="555753" +base04="729fcf" +base05="d3d7cf" +base06="ad7fa8" +base07="eeeeec" +base08="cc0000" +base09="ef2929" +base0A="c4a000" +base0B="4e9a06" +base0C="06989a" +base0D="3465a4" +base0E="75507b" +base0F="34e2e2" diff --git a/base16/schemes/tarot.properties b/base16/schemes/tarot.properties new file mode 100644 index 0000000..64cb5ab --- /dev/null +++ b/base16/schemes/tarot.properties @@ -0,0 +1,16 @@ +base00="0e091d" +base01="2a153c" +base02="4b2054" +base03="74316b" +base04="8c406f" +base05="aa556f" +base06="c4686d" +base07="dc8f7c" +base08="c53253" +base09="ea4d60" +base0A="ff6565" +base0B="a68e5a" +base0C="8c9785" +base0D="6e6080" +base0E="a45782" +base0F="984d51" diff --git a/base16/schemes/tokyo-night-dark.properties b/base16/schemes/tokyo-night-dark.properties new file mode 100644 index 0000000..6a17988 --- /dev/null +++ b/base16/schemes/tokyo-night-dark.properties @@ -0,0 +1,16 @@ +base00="1A1B26" +base01="16161E" +base02="2F3549" +base03="444B6A" +base04="787C99" +base05="A9B1D6" +base06="CBCCD1" +base07="D5D6DB" +base08="C0CAF5" +base09="A9B1D6" +base0A="0DB9D7" +base0B="9ECE6A" +base0C="B4F9F8" +base0D="2AC3DE" +base0E="BB9AF7" +base0F="F7768E" diff --git a/base16/schemes/tokyodark.properties b/base16/schemes/tokyodark.properties new file mode 100644 index 0000000..2032f8e --- /dev/null +++ b/base16/schemes/tokyodark.properties @@ -0,0 +1,16 @@ +base00="11121d" +base01="151621" +base02="43444f" +base03="393a45" +base04="1b1c27" +base05="abb2bf" +base06="555661" +base07="2c2d38" +base08="a485dd" +base09="a485dd" +base0A="7199ee" +base0B="d7A65f" +base0C="a485dd" +base0D="95c561" +base0E="ee6d85" +base0F="773440" diff --git a/base16/schemes/vice.properties b/base16/schemes/vice.properties new file mode 100644 index 0000000..d77fa69 --- /dev/null +++ b/base16/schemes/vice.properties @@ -0,0 +1,16 @@ +base00="17191E" +base01="22262d" +base02="3c3f4c" +base03="383a47" +base04="555e70" +base05="8b9cbe" +base06="B2BFD9" +base07="f4f4f7" +base08="ff29a8" +base09="85ffe0" +base0A="f0ffaa" +base0B="0badff" +base0C="8265ff" +base0D="00eaff" +base0E="00f6d9" +base0F="ff3d81" diff --git a/base16/schemes/vulcan.properties b/base16/schemes/vulcan.properties new file mode 100644 index 0000000..a5e17a2 --- /dev/null +++ b/base16/schemes/vulcan.properties @@ -0,0 +1,16 @@ +base00="041523" +base01="122339" +base02="003552" +base03="7a5759" +base04="6b6977" +base05="5b778c" +base06="333238" +base07="214d68" +base08="818591" +base09="9198a3" +base0A="adb4b9" +base0B="977d7c" +base0C="977d7c" +base0D="977d7c" +base0E="9198a3" +base0F="977d7c" diff --git a/base16/schemes/windows-95.properties b/base16/schemes/windows-95.properties new file mode 100644 index 0000000..be7a6f1 --- /dev/null +++ b/base16/schemes/windows-95.properties @@ -0,0 +1,16 @@ +base00="000000" # black +base01="1C1C1C" # darkish black +base02="383838" # brightish black +base03="545454" # bright black +base04="7e7e7e" # darker white +base05="a8a8a8" # white +base06="d2d2d2" # middle white +base07="fcfcfc" # bright white +base08="fc5454" # bright red +base09="a85400" # yellow +base0A="fcfc54" # bright yellow +base0B="54fc54" # bright green +base0C="54fcfc" # bright cyan +base0D="5454fc" # bright blue +base0E="fc54fc" # bright magenta +base0F="00a800" # green diff --git a/base16/schemes/zenbones.properties b/base16/schemes/zenbones.properties new file mode 100644 index 0000000..ef88779 --- /dev/null +++ b/base16/schemes/zenbones.properties @@ -0,0 +1,16 @@ +base00="191919" +base01="DE6E7C" +base02="819B69" +base03="B77E64" +base04="6099C0" +base05="B279A7" +base06="66A5AD" +base07="BBBBBB" +base08="3D3839" +base09="E8838F" +base0A="8BAE68" +base0B="D68C67" +base0C="61ABDA" +base0D="CF86C1" +base0E="65B8C1" +base0F="8E8E8E" diff --git a/base16/schemes/zenburn.properties b/base16/schemes/zenburn.properties new file mode 100644 index 0000000..e83a6e4 --- /dev/null +++ b/base16/schemes/zenburn.properties @@ -0,0 +1,16 @@ +base00="383838" +base01="404040" +base02="606060" +base03="6f6f6f" +base04="808080" +base05="dcdccc" +base06="c0c0c0" +base07="ffffff" +base08="dca3a3" +base09="dfaf8f" +base0A="e0cf9f" +base0B="5f7f5f" +base0C="93e0e3" +base0D="7cb8bb" +base0E="dc8cc3" +base0F="000000" diff --git a/base16/schemes/zeti.properties b/base16/schemes/zeti.properties new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/base16/schemes/zeti.properties @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/base16/templates/.mustache b/base16/templates/.mustache new file mode 100644 index 0000000..e69de29 diff --git a/base16/templates/alacritty.mustache b/base16/templates/alacritty.mustache new file mode 100644 index 0000000..16697cb --- /dev/null +++ b/base16/templates/alacritty.mustache @@ -0,0 +1,37 @@ +# Base16 {{scheme-name}} - alacritty color config +# {{scheme-author}} + +[colors] +draw_bold_text_with_bright_colors = false + +# Default colors +[colors.primary] +background = '0x{{base00}}' +foreground = '0x{{base05}}' + +# Colors the cursor will use if `custom_cursor_colors` is true +[colors.cursor] +text = '0x{{base00}}' +cursor = '0x{{base05}}' + +# Normal colors +[colors.normal] +black = '0x{{base00}}' +red = '0x{{base08}}' +green = '0x{{base0B}}' +yellow = '0x{{base0A}}' +blue = '0x{{base0D}}' +magenta = '0x{{base0E}}' +cyan = '0x{{base0C}}' +white = '0x{{base05}}' + +# Bright colors +[colors.bright] +black = '0x{{base03}}' +red = '0x{{base09}}' +green = '0x{{base01}}' +yellow = '0x{{base02}}' +blue = '0x{{base04}}' +magenta = '0x{{base06}}' +cyan = '0x{{base0F}}' +white = '0x{{base07}}' diff --git a/base16/templates/bspwm.mustache b/base16/templates/bspwm.mustache new file mode 100644 index 0000000..ba17854 --- /dev/null +++ b/base16/templates/bspwm.mustache @@ -0,0 +1,3 @@ +bspc config normal_border_color "#{{base01}}" +bspc config active_border_color "#{{base04}}" +bspc config focused_border_color "#{{base0C}}" diff --git a/base16/templates/imagemagick.mustache b/base16/templates/imagemagick.mustache new file mode 100644 index 0000000..6556da1 --- /dev/null +++ b/base16/templates/imagemagick.mustache @@ -0,0 +1,17 @@ +# ImageMagick pixel enumeration: 16,1,255,srgb +0,0: ({{rgb_r base00}},{{rgb_g base00}},{{rgb_b base00}}) #{{base00}} base00 +1,0: ({{rgb_r base01}},{{rgb_g base01}},{{rgb_b base01}}) #{{base01}} base01 +2,0: ({{rgb_r base02}},{{rgb_g base02}},{{rgb_b base02}}) #{{base02}} base02 +3,0: ({{rgb_r base03}},{{rgb_g base03}},{{rgb_b base03}}) #{{base03}} base03 +4,0: ({{rgb_r base04}},{{rgb_g base04}},{{rgb_b base04}}) #{{base04}} base04 +5,0: ({{rgb_r base05}},{{rgb_g base05}},{{rgb_b base05}}) #{{base05}} base05 +6,0: ({{rgb_r base06}},{{rgb_g base06}},{{rgb_b base06}}) #{{base06}} base06 +7,0: ({{rgb_r base07}},{{rgb_g base07}},{{rgb_b base07}}) #{{base07}} base07 +8,0: ({{rgb_r base08}},{{rgb_g base08}},{{rgb_b base08}}) #{{base08}} base08 +9,0: ({{rgb_r base09}},{{rgb_g base09}},{{rgb_b base09}}) #{{base09}} base09 +10,0: ({{rgb_r base0A}},{{rgb_g base0A}},{{rgb_b base0A}}) #{{base0A}} base0A +11,0: ({{rgb_r base0B}},{{rgb_g base0B}},{{rgb_b base0B}}) #{{base0B}} base0B +12,0: ({{rgb_r base0C}},{{rgb_g base0C}},{{rgb_b base0C}}) #{{base0C}} base0C +13,0: ({{rgb_r base0D}},{{rgb_g base0D}},{{rgb_b base0D}}) #{{base0D}} base0D +14,0: ({{rgb_r base0E}},{{rgb_g base0E}},{{rgb_b base0E}}) #{{base0E}} base0E +15,0: ({{rgb_r base0F}},{{rgb_g base0F}},{{rgb_b base0F}}) #{{base0F}} base0F diff --git a/base16/templates/qutebrowser-minimal.mustache b/base16/templates/qutebrowser-minimal.mustache new file mode 100644 index 0000000..66c455c --- /dev/null +++ b/base16/templates/qutebrowser-minimal.mustache @@ -0,0 +1,302 @@ +# base16-qutebrowser (https://github.com/theova/base16-qutebrowser) +# Scheme name: {{scheme-name}} +# Scheme author: {{scheme-author}} +# Template author: theova and Daniel Mulford +# Commentary: Tinted Theming: (https://github.com/tinted-theming) + +base00 = "#{{base00}}" +base01 = "#{{base01}}" +base02 = "#{{base02}}" +base03 = "#{{base03}}" +base04 = "#{{base04}}" +base05 = "#{{base05}}" +base06 = "#{{base06}}" +base07 = "#{{base07}}" +base08 = "#{{base08}}" +base09 = "#{{base09}}" +base0A = "#{{base0A}}" +base0B = "#{{base0B}}" +base0C = "#{{base0C}}" +base0D = "#{{base0D}}" +base0E = "#{{base0E}}" +base0F = "#{{base0F}}" + +# set qutebrowser colors + +# Text color of the completion widget. May be a single color to use for +# all columns or a list of three colors, one for each column. +c.colors.completion.fg = base05 + +# Background color of the completion widget for odd rows. +c.colors.completion.odd.bg = base00 + +# Background color of the completion widget for even rows. +c.colors.completion.even.bg = base00 + +# Foreground color of completion widget category headers. +c.colors.completion.category.fg = base0D + +# Background color of the completion widget category headers. +c.colors.completion.category.bg = base00 + +# Top border color of the completion widget category headers. +c.colors.completion.category.border.top = base00 + +# Bottom border color of the completion widget category headers. +c.colors.completion.category.border.bottom = base00 + +# Foreground color of the selected completion item. +c.colors.completion.item.selected.fg = base05 + +# Background color of the selected completion item. +c.colors.completion.item.selected.bg = base02 + +# Top border color of the selected completion item. +c.colors.completion.item.selected.border.top = base02 + +# Bottom border color of the selected completion item. +c.colors.completion.item.selected.border.bottom = base02 + +# Foreground color of the matched text in the selected completion item. +c.colors.completion.item.selected.match.fg = base05 + +# Foreground color of the matched text in the completion. +c.colors.completion.match.fg = base09 + +# Color of the scrollbar handle in the completion view. +c.colors.completion.scrollbar.fg = base05 + +# Color of the scrollbar in the completion view. +c.colors.completion.scrollbar.bg = base00 + +# Background color of disabled items in the context menu. +c.colors.contextmenu.disabled.bg = base01 + +# Foreground color of disabled items in the context menu. +c.colors.contextmenu.disabled.fg = base04 + +# Background color of the context menu. If set to null, the Qt default is used. +c.colors.contextmenu.menu.bg = base00 + +# Foreground color of the context menu. If set to null, the Qt default is used. +c.colors.contextmenu.menu.fg = base05 + +# Background color of the context menu’s selected item. If set to null, the Qt default is used. +c.colors.contextmenu.selected.bg = base02 + +#Foreground color of the context menu’s selected item. If set to null, the Qt default is used. +c.colors.contextmenu.selected.fg = base05 + +# Background color for the download bar. +c.colors.downloads.bar.bg = base00 + +# Color gradient start for download text. +c.colors.downloads.start.fg = base00 + +# Color gradient start for download backgrounds. +c.colors.downloads.start.bg = base0D + +# Color gradient end for download text. +c.colors.downloads.stop.fg = base00 + +# Color gradient stop for download backgrounds. +c.colors.downloads.stop.bg = base0C + +# Foreground color for downloads with errors. +c.colors.downloads.error.fg = base08 + +# Font color for hints. +c.colors.hints.fg = base00 + +# Background color for hints. Note that you can use a `rgba(...)` value +# for transparency. +c.colors.hints.bg = base0A + +# Font color for the matched part of hints. +c.colors.hints.match.fg = base05 + +# Text color for the keyhint widget. +c.colors.keyhint.fg = base05 + +# Highlight color for keys to complete the current keychain. +c.colors.keyhint.suffix.fg = base05 + +# Background color of the keyhint widget. +c.colors.keyhint.bg = base00 + +# Foreground color of an error message. +c.colors.messages.error.fg = base00 + +# Background color of an error message. +c.colors.messages.error.bg = base08 + +# Border color of an error message. +c.colors.messages.error.border = base08 + +# Foreground color of a warning message. +c.colors.messages.warning.fg = base00 + +# Background color of a warning message. +c.colors.messages.warning.bg = base0E + +# Border color of a warning message. +c.colors.messages.warning.border = base0E + +# Foreground color of an info message. +c.colors.messages.info.fg = base05 + +# Background color of an info message. +c.colors.messages.info.bg = base00 + +# Border color of an info message. +c.colors.messages.info.border = base00 + +# Foreground color for prompts. +c.colors.prompts.fg = base05 + +# Border used around UI elements in prompts. +c.colors.prompts.border = base00 + +# Background color for prompts. +c.colors.prompts.bg = base00 + +# Background color for the selected item in filename prompts. +c.colors.prompts.selected.bg = base02 + +# Foreground color for the selected item in filename prompts. +c.colors.prompts.selected.fg = base05 + +# Foreground color of the statusbar. +c.colors.statusbar.normal.fg = base05 + +# Background color of the statusbar. +c.colors.statusbar.normal.bg = base00 + +# Foreground color of the statusbar in insert mode. +c.colors.statusbar.insert.fg = base0C + +# Background color of the statusbar in insert mode. +c.colors.statusbar.insert.bg = base00 + +# Foreground color of the statusbar in passthrough mode. +c.colors.statusbar.passthrough.fg = base0A + +# Background color of the statusbar in passthrough mode. +c.colors.statusbar.passthrough.bg = base00 + +# Foreground color of the statusbar in private browsing mode. +c.colors.statusbar.private.fg = base0E + +# Background color of the statusbar in private browsing mode. +c.colors.statusbar.private.bg = base00 + +# Foreground color of the statusbar in command mode. +c.colors.statusbar.command.fg = base04 + +# Background color of the statusbar in command mode. +c.colors.statusbar.command.bg = base01 + +# Foreground color of the statusbar in private browsing + command mode. +c.colors.statusbar.command.private.fg = base0E + +# Background color of the statusbar in private browsing + command mode. +c.colors.statusbar.command.private.bg = base01 + +# Foreground color of the statusbar in caret mode. +c.colors.statusbar.caret.fg = base0D + +# Background color of the statusbar in caret mode. +c.colors.statusbar.caret.bg = base00 + +# Foreground color of the statusbar in caret mode with a selection. +c.colors.statusbar.caret.selection.fg = base0D + +# Background color of the statusbar in caret mode with a selection. +c.colors.statusbar.caret.selection.bg = base00 + +# Background color of the progress bar. +c.colors.statusbar.progress.bg = base0D + +# Default foreground color of the URL in the statusbar. +c.colors.statusbar.url.fg = base05 + +# Foreground color of the URL in the statusbar on error. +c.colors.statusbar.url.error.fg = base08 + +# Foreground color of the URL in the statusbar for hovered links. +c.colors.statusbar.url.hover.fg = base09 + +# Foreground color of the URL in the statusbar on successful load +# (http). +c.colors.statusbar.url.success.http.fg = base0B + +# Foreground color of the URL in the statusbar on successful load +# (https). +c.colors.statusbar.url.success.https.fg = base0B + +# Foreground color of the URL in the statusbar when there's a warning. +c.colors.statusbar.url.warn.fg = base0E + +# Background color of the tab bar. +c.colors.tabs.bar.bg = base00 + +# Color gradient start for the tab indicator. +c.colors.tabs.indicator.start = base0D + +# Color gradient end for the tab indicator. +c.colors.tabs.indicator.stop = base0C + +# Color for the tab indicator on errors. +c.colors.tabs.indicator.error = base08 + +# Foreground color of unselected odd tabs. +c.colors.tabs.odd.fg = base05 + +# Background color of unselected odd tabs. +c.colors.tabs.odd.bg = base00 + +# Foreground color of unselected even tabs. +c.colors.tabs.even.fg = base05 + +# Background color of unselected even tabs. +c.colors.tabs.even.bg = base00 + +# Background color of pinned unselected even tabs. +c.colors.tabs.pinned.even.bg = base0B + +# Foreground color of pinned unselected even tabs. +c.colors.tabs.pinned.even.fg = base00 + +# Background color of pinned unselected odd tabs. +c.colors.tabs.pinned.odd.bg = base0B + +# Foreground color of pinned unselected odd tabs. +c.colors.tabs.pinned.odd.fg = base00 + +# Background color of pinned selected even tabs. +c.colors.tabs.pinned.selected.even.bg = base02 + +# Foreground color of pinned selected even tabs. +c.colors.tabs.pinned.selected.even.fg = base05 + +# Background color of pinned selected odd tabs. +c.colors.tabs.pinned.selected.odd.bg = base02 + +# Foreground color of pinned selected odd tabs. +c.colors.tabs.pinned.selected.odd.fg = base05 + +# Foreground color of selected odd tabs. +c.colors.tabs.selected.odd.fg = base05 + +# Background color of selected odd tabs. +c.colors.tabs.selected.odd.bg = base02 + +# Foreground color of selected even tabs. +c.colors.tabs.selected.even.fg = base05 + +# Background color of selected even tabs. +c.colors.tabs.selected.even.bg = base02 + +# Background color for webpages if unset (or empty to use the theme's +# color). +c.colors.webpage.bg = base00 diff --git a/base16/templates/qutebrowser.mustache b/base16/templates/qutebrowser.mustache new file mode 100644 index 0000000..cacc6d2 --- /dev/null +++ b/base16/templates/qutebrowser.mustache @@ -0,0 +1,302 @@ +# base16-qutebrowser (https://github.com/theova/base16-qutebrowser) +# Scheme name: {{scheme-name}} +# Scheme author: {{scheme-author}} +# Template author: theova +# Commentary: Tinted Theming: (https://github.com/tinted-theming) + +base00 = "#{{base00}}" +base01 = "#{{base01}}" +base02 = "#{{base02}}" +base03 = "#{{base03}}" +base04 = "#{{base04}}" +base05 = "#{{base05}}" +base06 = "#{{base06}}" +base07 = "#{{base07}}" +base08 = "#{{base08}}" +base09 = "#{{base09}}" +base0A = "#{{base0A}}" +base0B = "#{{base0B}}" +base0C = "#{{base0C}}" +base0D = "#{{base0D}}" +base0E = "#{{base0E}}" +base0F = "#{{base0F}}" + +# set qutebrowser colors + +# Text color of the completion widget. May be a single color to use for +# all columns or a list of three colors, one for each column. +c.colors.completion.fg = base05 + +# Background color of the completion widget for odd rows. +c.colors.completion.odd.bg = base01 + +# Background color of the completion widget for even rows. +c.colors.completion.even.bg = base00 + +# Foreground color of completion widget category headers. +c.colors.completion.category.fg = base0A + +# Background color of the completion widget category headers. +c.colors.completion.category.bg = base00 + +# Top border color of the completion widget category headers. +c.colors.completion.category.border.top = base00 + +# Bottom border color of the completion widget category headers. +c.colors.completion.category.border.bottom = base00 + +# Foreground color of the selected completion item. +c.colors.completion.item.selected.fg = base05 + +# Background color of the selected completion item. +c.colors.completion.item.selected.bg = base02 + +# Top border color of the selected completion item. +c.colors.completion.item.selected.border.top = base02 + +# Bottom border color of the selected completion item. +c.colors.completion.item.selected.border.bottom = base02 + +# Foreground color of the matched text in the selected completion item. +c.colors.completion.item.selected.match.fg = base0B + +# Foreground color of the matched text in the completion. +c.colors.completion.match.fg = base0B + +# Color of the scrollbar handle in the completion view. +c.colors.completion.scrollbar.fg = base05 + +# Color of the scrollbar in the completion view. +c.colors.completion.scrollbar.bg = base00 + +# Background color of disabled items in the context menu. +c.colors.contextmenu.disabled.bg = base01 + +# Foreground color of disabled items in the context menu. +c.colors.contextmenu.disabled.fg = base04 + +# Background color of the context menu. If set to null, the Qt default is used. +c.colors.contextmenu.menu.bg = base00 + +# Foreground color of the context menu. If set to null, the Qt default is used. +c.colors.contextmenu.menu.fg = base05 + +# Background color of the context menu’s selected item. If set to null, the Qt default is used. +c.colors.contextmenu.selected.bg = base02 + +#Foreground color of the context menu’s selected item. If set to null, the Qt default is used. +c.colors.contextmenu.selected.fg = base05 + +# Background color for the download bar. +c.colors.downloads.bar.bg = base00 + +# Color gradient start for download text. +c.colors.downloads.start.fg = base00 + +# Color gradient start for download backgrounds. +c.colors.downloads.start.bg = base0D + +# Color gradient end for download text. +c.colors.downloads.stop.fg = base00 + +# Color gradient stop for download backgrounds. +c.colors.downloads.stop.bg = base0C + +# Foreground color for downloads with errors. +c.colors.downloads.error.fg = base08 + +# Font color for hints. +c.colors.hints.fg = base00 + +# Background color for hints. Note that you can use a `rgba(...)` value +# for transparency. +c.colors.hints.bg = base0A + +# Font color for the matched part of hints. +c.colors.hints.match.fg = base05 + +# Text color for the keyhint widget. +c.colors.keyhint.fg = base05 + +# Highlight color for keys to complete the current keychain. +c.colors.keyhint.suffix.fg = base05 + +# Background color of the keyhint widget. +c.colors.keyhint.bg = base00 + +# Foreground color of an error message. +c.colors.messages.error.fg = base00 + +# Background color of an error message. +c.colors.messages.error.bg = base08 + +# Border color of an error message. +c.colors.messages.error.border = base08 + +# Foreground color of a warning message. +c.colors.messages.warning.fg = base00 + +# Background color of a warning message. +c.colors.messages.warning.bg = base0E + +# Border color of a warning message. +c.colors.messages.warning.border = base0E + +# Foreground color of an info message. +c.colors.messages.info.fg = base05 + +# Background color of an info message. +c.colors.messages.info.bg = base00 + +# Border color of an info message. +c.colors.messages.info.border = base00 + +# Foreground color for prompts. +c.colors.prompts.fg = base05 + +# Border used around UI elements in prompts. +c.colors.prompts.border = base00 + +# Background color for prompts. +c.colors.prompts.bg = base00 + +# Background color for the selected item in filename prompts. +c.colors.prompts.selected.bg = base02 + +# Foreground color for the selected item in filename prompts. +c.colors.prompts.selected.fg = base05 + +# Foreground color of the statusbar. +c.colors.statusbar.normal.fg = base0B + +# Background color of the statusbar. +c.colors.statusbar.normal.bg = base00 + +# Foreground color of the statusbar in insert mode. +c.colors.statusbar.insert.fg = base00 + +# Background color of the statusbar in insert mode. +c.colors.statusbar.insert.bg = base0D + +# Foreground color of the statusbar in passthrough mode. +c.colors.statusbar.passthrough.fg = base00 + +# Background color of the statusbar in passthrough mode. +c.colors.statusbar.passthrough.bg = base0C + +# Foreground color of the statusbar in private browsing mode. +c.colors.statusbar.private.fg = base00 + +# Background color of the statusbar in private browsing mode. +c.colors.statusbar.private.bg = base01 + +# Foreground color of the statusbar in command mode. +c.colors.statusbar.command.fg = base05 + +# Background color of the statusbar in command mode. +c.colors.statusbar.command.bg = base00 + +# Foreground color of the statusbar in private browsing + command mode. +c.colors.statusbar.command.private.fg = base05 + +# Background color of the statusbar in private browsing + command mode. +c.colors.statusbar.command.private.bg = base00 + +# Foreground color of the statusbar in caret mode. +c.colors.statusbar.caret.fg = base00 + +# Background color of the statusbar in caret mode. +c.colors.statusbar.caret.bg = base0E + +# Foreground color of the statusbar in caret mode with a selection. +c.colors.statusbar.caret.selection.fg = base00 + +# Background color of the statusbar in caret mode with a selection. +c.colors.statusbar.caret.selection.bg = base0D + +# Background color of the progress bar. +c.colors.statusbar.progress.bg = base0D + +# Default foreground color of the URL in the statusbar. +c.colors.statusbar.url.fg = base05 + +# Foreground color of the URL in the statusbar on error. +c.colors.statusbar.url.error.fg = base08 + +# Foreground color of the URL in the statusbar for hovered links. +c.colors.statusbar.url.hover.fg = base05 + +# Foreground color of the URL in the statusbar on successful load +# (http). +c.colors.statusbar.url.success.http.fg = base0C + +# Foreground color of the URL in the statusbar on successful load +# (https). +c.colors.statusbar.url.success.https.fg = base0B + +# Foreground color of the URL in the statusbar when there's a warning. +c.colors.statusbar.url.warn.fg = base0E + +# Background color of the tab bar. +c.colors.tabs.bar.bg = base00 + +# Color gradient start for the tab indicator. +c.colors.tabs.indicator.start = base0D + +# Color gradient end for the tab indicator. +c.colors.tabs.indicator.stop = base0C + +# Color for the tab indicator on errors. +c.colors.tabs.indicator.error = base08 + +# Foreground color of unselected odd tabs. +c.colors.tabs.odd.fg = base05 + +# Background color of unselected odd tabs. +c.colors.tabs.odd.bg = base01 + +# Foreground color of unselected even tabs. +c.colors.tabs.even.fg = base05 + +# Background color of unselected even tabs. +c.colors.tabs.even.bg = base00 + +# Background color of pinned unselected even tabs. +c.colors.tabs.pinned.even.bg = base0C + +# Foreground color of pinned unselected even tabs. +c.colors.tabs.pinned.even.fg = base07 + +# Background color of pinned unselected odd tabs. +c.colors.tabs.pinned.odd.bg = base0B + +# Foreground color of pinned unselected odd tabs. +c.colors.tabs.pinned.odd.fg = base07 + +# Background color of pinned selected even tabs. +c.colors.tabs.pinned.selected.even.bg = base02 + +# Foreground color of pinned selected even tabs. +c.colors.tabs.pinned.selected.even.fg = base05 + +# Background color of pinned selected odd tabs. +c.colors.tabs.pinned.selected.odd.bg = base02 + +# Foreground color of pinned selected odd tabs. +c.colors.tabs.pinned.selected.odd.fg = base05 + +# Foreground color of selected odd tabs. +c.colors.tabs.selected.odd.fg = base05 + +# Background color of selected odd tabs. +c.colors.tabs.selected.odd.bg = base02 + +# Foreground color of selected even tabs. +c.colors.tabs.selected.even.fg = base05 + +# Background color of selected even tabs. +c.colors.tabs.selected.even.bg = base02 + +# Background color for webpages if unset (or empty to use the theme's +# color). +# c.colors.webpage.bg = base00 diff --git a/base16/templates/rofi-minimal.mustache b/base16/templates/rofi-minimal.mustache new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/base16/templates/rofi-minimal.mustache @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/base16/templates/rofi.mustache b/base16/templates/rofi.mustache new file mode 100644 index 0000000..f1d3926 --- /dev/null +++ b/base16/templates/rofi.mustache @@ -0,0 +1,150 @@ +/** + * Base16 {{scheme-name}} ROFI Color theme + * + * Authors + * Scheme: {{scheme-author}} + * Template: Tinted Theming (https://github.com/tinted-theming) + */ + +* { + red: rgba ( {{rgb_r base08}}, {{rgb_g base08}}, {{rgb_b base08}}, 100 % ); + blue: rgba ( {{rgb_r base0D}}, {{rgb_g base0D}}, {{rgb_b base0D}}, 100 % ); + lightfg: rgba ( {{rgb_r base06}}, {{rgb_g base06}}, {{rgb_b base06}}, 100 % ); + lightbg: rgba ( {{rgb_r base01}}, {{rgb_g base01}}, {{rgb_b base01}}, 100 % ); + foreground: rgba ( {{rgb_r base05}}, {{rgb_g base05}}, {{rgb_b base05}}, 100 % ); + background: rgba ( {{rgb_r base00}}, {{rgb_g base00}}, {{rgb_b base00}}, 100 % ); + background-color: rgba ( {{rgb_r base00}}, {{rgb_g base00}}, {{rgb_b base00}}, 0 % ); + separatorcolor: @foreground; + border-color: @foreground; + selected-normal-foreground: @lightbg; + selected-normal-background: @lightfg; + selected-active-foreground: @background; + selected-active-background: @blue; + selected-urgent-foreground: @background; + selected-urgent-background: @red; + normal-foreground: @foreground; + normal-background: @background; + active-foreground: @blue; + active-background: @background; + urgent-foreground: @red; + urgent-background: @background; + alternate-normal-foreground: @foreground; + alternate-normal-background: @lightbg; + alternate-active-foreground: @blue; + alternate-active-background: @lightbg; + alternate-urgent-foreground: @red; + alternate-urgent-background: @lightbg; + spacing: 2; +} +window { + background-color: @background; + border: 1; + padding: 5; +} +mainbox { + border: 0; + padding: 0; +} +message { + border: 1px dash 0px 0px ; + border-color: @separatorcolor; + padding: 1px ; +} +textbox { + text-color: @foreground; +} +listview { + fixed-height: 0; + border: 2px dash 0px 0px ; + border-color: @separatorcolor; + spacing: 2px ; + scrollbar: true; + padding: 2px 0px 0px ; +} +element-text, element-icon { + background-color: inherit; + text-color: inherit; +} +element { + border: 0; + padding: 1px ; +} +element normal.normal { + background-color: @normal-background; + text-color: @normal-foreground; +} +element normal.urgent { + background-color: @urgent-background; + text-color: @urgent-foreground; +} +element normal.active { + background-color: @active-background; + text-color: @active-foreground; +} +element selected.normal { + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; +} +element selected.urgent { + background-color: @selected-urgent-background; + text-color: @selected-urgent-foreground; +} +element selected.active { + background-color: @selected-active-background; + text-color: @selected-active-foreground; +} +element alternate.normal { + background-color: @alternate-normal-background; + text-color: @alternate-normal-foreground; +} +element alternate.urgent { + background-color: @alternate-urgent-background; + text-color: @alternate-urgent-foreground; +} +element alternate.active { + background-color: @alternate-active-background; + text-color: @alternate-active-foreground; +} +scrollbar { + width: 4px ; + border: 0; + handle-color: @normal-foreground; + handle-width: 8px ; + padding: 0; +} +sidebar { + border: 2px dash 0px 0px ; + border-color: @separatorcolor; +} +button { + spacing: 0; + text-color: @normal-foreground; +} +button selected { + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; +} +inputbar { + spacing: 0px; + text-color: @normal-foreground; + padding: 1px ; + children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; +} +case-indicator { + spacing: 0; + text-color: @normal-foreground; +} +entry { + spacing: 0; + text-color: @normal-foreground; +} +prompt { + spacing: 0; + text-color: @normal-foreground; +} +textbox-prompt-colon { + expand: false; + str: ":"; + margin: 0px 0.3000em 0.0000em 0.0000em ; + text-color: inherit; +} diff --git a/base24/schemes/chalk.properties b/base24/schemes/chalk.properties new file mode 100644 index 0000000..e1e7e72 --- /dev/null +++ b/base24/schemes/chalk.properties @@ -0,0 +1,24 @@ +base00="151515" +base01="202020" +base02="303030" +base03="505050" +base04="b0b0b0" +base05="d0d0d0" +base06="e0e0e0" +base07="f5f5f5" +base08="fa859c" +base09="ea9971" +base0A="ddb26f" +base0B="a1bb54" +base0C="10bcad" +base0D="5ab9ed" +base0E="db8fea" +base0F="deaf8f" +base10="0b0b0b" +base11="060606" +base12="fb9fb1" +base13="eda987" +base14="acc267" +base15="12cfc0" +base16="6fc2ef" +base17="e1a3ee" diff --git a/build_documentation.sh b/build_documentation.sh new file mode 100755 index 0000000..766e88f --- /dev/null +++ b/build_documentation.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +pandoc ./doc/manual.md --to man --output ./doc/shchemes.1 diff --git a/doc/cookbook.md b/doc/cookbook.md new file mode 100644 index 0000000..5654326 --- /dev/null +++ b/doc/cookbook.md @@ -0,0 +1,5 @@ +# Cookbook + +## ImageMagick + +### Apply a color scheme to an image diff --git a/doc/doc.html b/doc/doc.html new file mode 100644 index 0000000..87c02c0 --- /dev/null +++ b/doc/doc.html @@ -0,0 +1,212 @@ + + + + + + + manual + + + + +

NAME

+

shchemes - Automatically theming your apps with the power of the +shell.

+

SYNOPSIS

+
shchemes METHOD [OPTIONS]
+

DESCRIPTION

+

SCHEME

+

SCHEME is an environment variable that determines the default color +scheme to operate on.

+

Schemes are in a format of <scheme format>:<scheme +name>.

+

If no format is provided, base16 is assumed.

+

Examples

+
SCHEME="base16:heetch"
+
+SCHEME="base24:monokai"
+

See also: --scheme

+

OPTIONS

+

--scheme

+

Sets the color scheme to operate on, regardless of the value of +SCHEME.

+

Example

+
shchemes create_theme kitty --scheme=base16:blueforest
+

See also: SCHEME

+

--format

+

Sets the color scheme format of the output file. This defaults to the +same format as your color scheme.

+

Example

+
shchemes create_theme alacritty --format=base24
+

METHODS

+

create_theme

+

Apply the color scheme to the template for a given app

+
shchemes create_theme TARGET
+

See also: --format

+

inject

+

In the given file, looks for a comment that indicates a Shchemes +injection block, runs its command in a shell with Shchemes sourced, and +pipes the stdout into the content of the injection block.

+
shchemes inject PATH
+

install_tinted_scheme

+

Installs a color scheme from the tinted-theming/schemes.

+

You can find a gallery of the base16 themes here: https://tinted-theming.github.io/base16-gallery/

+
shchemes install_tinted_scheme
+

See also: SCHEME --scheme

+

AUTHOR

+

Shchemes is written by Dakedres

+ + diff --git a/doc/manual.md b/doc/manual.md new file mode 100644 index 0000000..ace2e47 --- /dev/null +++ b/doc/manual.md @@ -0,0 +1,82 @@ +# NAME + +shchemes - Automatically theming your apps with the power of the shell. + +# SYNOPSIS + +``` +shchemes METHOD [OPTIONS] +``` + +# DESCRIPTION + +## SCHEME {#SCHEME} +SCHEME is an environment variable that determines the default color +scheme to operate on. + +Schemes are in a format of \:\. + +If no format is provided, base16 is assumed. + +## Examples +``` +SCHEME="base16:heetch" + +SCHEME="base24:monokai" +``` + +See also: [`--scheme`](#scheme) + +## OPTIONS + +## `--scheme` {#scheme} +Sets the color scheme to operate on, regardless of the value of SCHEME. + +## Example +``` +shchemes create_theme kitty --scheme=base16:blueforest +``` + +See also: [SCHEME]{#scheme} + +## `--format` {#format} +Sets the color scheme format of the output file. This defaults to the +same format as your color scheme. + +## Example +``` +shchemes create_theme alacritty --format=base24 +``` + +## METHODS + +## create_theme + +Apply the color scheme to the template for a given app +``` +shchemes create_theme TARGET +``` + +See also: [`--format`](#format) + +## inject + +In the given file, looks for a comment that indicates a Shchemes injection block, runs its command in a shell with Shchemes sourced, and pipes the stdout into the content of the injection block. +``` +shchemes inject PATH +``` + +## install_tinted_scheme +Installs a color scheme from the [tinted-theming/schemes](https://github.com/tinted-theming/schemes). + +You can find a gallery of the base16 themes here: +[https://tinted-theming.github.io/base16-gallery/](https://tinted-theming.github.io/base16-gallery/) +``` +shchemes install_tinted_scheme +``` + +See also: [`SCHEME`](#SCHEME) [`--scheme`](#scheme) + +# AUTHOR + +Shchemes is written by Dakedres diff --git a/doc/shchemes.1 b/doc/shchemes.1 new file mode 100644 index 0000000..62a356e --- /dev/null +++ b/doc/shchemes.1 @@ -0,0 +1,95 @@ +.SH NAME +.PP +shchemes - Automatically theming your apps with the power of the shell. +.SH SYNOPSIS +.IP +.nf +\f[C] +shchemes METHOD [OPTIONS] +\f[R] +.fi +.SH DESCRIPTION +.SS SCHEME +.PP +SCHEME is an environment variable that determines the default color +scheme to operate on. +.PP +Schemes are in a format of :. +.PP +If no format is provided, base16 is assumed. +.SS Examples +.IP +.nf +\f[C] +SCHEME=\[dq]base16:heetch\[dq] + +SCHEME=\[dq]base24:monokai\[dq] +\f[R] +.fi +.PP +See also: \f[V]--scheme\f[R] +.SS OPTIONS +.SS \f[V]--scheme\f[R] +.PP +Sets the color scheme to operate on, regardless of the value of SCHEME. +.SS Example +.IP +.nf +\f[C] +shchemes create_theme kitty --scheme=base16:blueforest +\f[R] +.fi +.PP +See also: SCHEME +.SS \f[V]--format\f[R] +.PP +Sets the color scheme format of the output file. +This defaults to the same format as your color scheme. +.SS Example +.IP +.nf +\f[C] +shchemes create_theme alacritty --format=base24 +\f[R] +.fi +.SS METHODS +.SS create_theme +.PP +Apply the color scheme to the template for a given app +.IP +.nf +\f[C] +shchemes create_theme TARGET +\f[R] +.fi +.PP +See also: \f[V]--format\f[R] +.SS inject +.PP +In the given file, looks for a comment that indicates a Shchemes +injection block, runs its command in a shell with Shchemes sourced, and +pipes the stdout into the content of the injection block. +.IP +.nf +\f[C] +shchemes inject PATH +\f[R] +.fi +.SS install_tinted_scheme +.PP +Installs a color scheme from the +tinted-theming/schemes (https://github.com/tinted-theming/schemes). +.PP +You can find a gallery of the base16 themes here: + +.IP +.nf +\f[C] +shchemes install_tinted_scheme +\f[R] +.fi +.PP +See also: \f[V]SCHEME\f[R] \f[V]--scheme\f[R] +.SH AUTHOR +.PP +Shchemes is written by Dakedres diff --git a/lib/apply_scheme_to_template.sh b/lib/apply_scheme_to_template.sh new file mode 100644 index 0000000..e4dd4af --- /dev/null +++ b/lib/apply_scheme_to_template.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash +SCHEME=$1 +TEMPLATE=$2 + +if [ -z "$MO_PATH" ]; then + MO_PATH="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")/mo/mo" +fi + +source $MO_PATH + +rgb_r() { + echo "$((0x${MO_FUNCTION_ARGS[0]:0:2}))" +} + +rgb_g() { + echo "$((0x${MO_FUNCTION_ARGS[0]:2:2}))" +} + +rgb_b() { + echo "$((0x${MO_FUNCTION_ARGS[0]:4:4}))" +} + +set -a # All variables after this will be exported +source $SCHEME +mo "$TEMPLATE" diff --git a/lib/mo b/lib/mo new file mode 160000 index 0000000..6e57510 --- /dev/null +++ b/lib/mo @@ -0,0 +1 @@ +Subproject commit 6e57510ba982d0255f998701bab0a3566f16eaf6 diff --git a/shchemes b/shchemes new file mode 100755 index 0000000..146c96c --- /dev/null +++ b/shchemes @@ -0,0 +1,255 @@ +#!/usr/bin/env bash +# set -e + +shchemes_path=$(readlink -f "${BASH_SOURCE[0]}") +shchemes_dir=$(dirname "$shchemes_path") + +scheme="$SCHEME" +args=() + +for i in "$@"; do + case $i in + -s=*|--scheme=*) + scheme="${i#*=}" + ;; + + -f=*|--format=*) + format="${i#*=}" + ;; + + -c=*|--comment-pattern=*) + comment_pattern="${i#*=}" + ;; + + --help) + args[0]="manual" + ;; + + *) + if [[ "$i" == "-"* ]]; then + echo "Invalid option \"$i\"" + exit 1 + fi + args+=("$i") + esac +done + +method=${args[0]} + +parse_scheme() { + if [ -z "$scheme" ]; then + echo "Please set a scheme" + exit 1 + fi + + scheme_format=${scheme%:*} + scheme_name=${scheme#*:} + + # No format + if [ "$scheme_format" == "$scheme_name" ] ; then + scheme_format="base16" + fi + scheme_path="${shchemes_dir}/${scheme_format}/schemes/${scheme_name}.properties" +} + +check_scheme_path() { + if [ ! -r "$scheme_path" ]; then + echo "Found no color scheme for \"${scheme_name}\" of format \"${scheme_format}\"" + exit 1 + fi +} + +parse_format() { + if [ -z "$format" ]; then + format=$scheme_format + fi + format_dir="${shchemes_dir}/${format}" +} + +parse_comment_pattern() { + if [ -z "$comment_pattern" ]; then + get_comment_start + else + readarray -td " " comment_pattern < <(echo "$comment_pattern") + comment_start="${comment_pattern[0]}" + comment_end="${comment_pattern[1]}" + fi +} + +get_comment_start() { + local ext + ext=$(basename "$path") + ext="${ext##*.}" + + case $ext in + js|rasi) + comment_start="//" + ;; + + css) + comment_start="/*" + comment_end="*/" + ;; + + *) + comment_start="#" + esac +} + +create_theme() { + target=$1 + parse_scheme + check_scheme_path + parse_format + + if [ -n "$target" ]; then + template_path=${format_dir}/templates/${target}.mustache + if [ ! -r "$template_path" ]; then + echo "No viable ${scheme_format} template for \"${target}\"" + exit 1 + fi + fi + + if [ -z "$MO_PATH" ]; then + MO_PATH="${shchemes_dir/lib/mo/mo}" + fi + + bash "${shchemes_dir}/lib/apply_scheme_to_template.sh" "$scheme_path" "$template_path" +} + +inject() { + path=$1 + parse_scheme + check_scheme_path + parse_comment_pattern + + if [ "$comment_start" == "" ]; then + comment_start="#" + fi + awk -i inplace \ + -v blockstart="${comment_start}START SHCHEMES BLOCK" \ + -v blockend="${comment_start}END SHCHEMES BLOCK" \ + -v commentend="$comment_end" \ + -v scheme="$scheme" \ + -v shchemes="$shchemes_path" \ + -v sq="'" \ + -F ":" ' +!inblock { print } +inblock { + lines[++bi] = $0 +} +$1 ~ blockstart { + inblock = 1; + bi = 0; + command = substr($2, 0, length($2) - length(commentend)) + system("/usr/bin/env bash -c " sq "SCHEME=\"" scheme "\";" command sq); + next +} +$1 ~ blockend { + inblock = 0; + print; + next +} +ENDFILE { + if(inblock) { + print blockend commentend; + for(i=1;i<=bi;i++) { + print lines[i]; + } + } +} + ' "$path" +} + +convert_tinted_template() { + path=$1 + sed -r \ + -e 's/\{\{base([0-9A-F]+)-hex\}\}/{{base\1}}/' \ + -e 's/\{\{base([0-9A-F]+)-rgb-r\}\}/{{rgb_r base\1}}/' \ + -e 's/\{\{base([0-9A-F]+)-rgb-g\}\}/{{rgb_g base\1}}/' \ + -e 's/\{\{base([0-9A-F]+)-rgb-b\}\}/{{rgb_b base\1}}/' +} + +convert_tinted_scheme() { + path=$1 + + awk -i inplace -F ' *: *' ' +/^#/ { print } +$1 ~ "palette" { p = 1; next } +p && /^ +/ { gsub(/ /, "", $1); print $1 "=" $2 } + ' "$path" +} + +install_tinted_scheme() { + if [ -n "$1" ]; then + scheme=$1 + fi + parse_scheme + # output="${shchemes_dir}/${scheme_format}/schemes/${scheme_name}.properties" + + if [ ! -d "$(dirname "$scheme_path")" ]; then + echo "No folder for format" + exit 1 + fi + url="https://raw.githubusercontent.com/tinted-theming/schemes/master/${scheme_format}/${scheme_name}.yaml" + http_code=$( + curl \ + --silent \ + --output "$scheme_path" \ + --write-out "%{http_code}" \ + "$url") + + if [[ $http_code -lt 200 || $http_code -gt 299 ]]; then + echo "No such color scheme" + exit 1 + fi + + convert_tinted_scheme "$scheme_path" + echo "Installed ${scheme}" +} + +install_tinted_template() { + url=$1 + target=$2 + + curl "$url" | convert_tinted_template > "${shchemes_dir}/base16/templates/${target}.mustache" +} + +manual() { + man "${shchemes_dir}/doc/shchemes.1" +} + +if [ "$method" != "" ]; then + case $method in + create_theme) + create_theme "${args[1]}" + ;; + + inject) + inject "${args[1]}" "${args[2]}" + ;; + + convert_tinted_template) + convert_tinted_template "${args[1]}" + ;; + + install_tinted_template) + install_tinted_template "${args[1]}" "${args[2]}" + ;; + + convert_tinted_scheme) + convert_tinted_scheme "${args[1]}" + ;; + + install_tinted_scheme) + install_tinted_scheme "${args[1]}" "${args[2]}" + ;; + + help|manual|man) + manual + ;; + + *) + echo "No such method" + esac +fi