This template maps Tinted Theming Base16, Base24 and Tinted8 schemes to Kakoune colorschemes.
Have a look at the gallery page for examples of what the themes look like.
plug "tinted-theming/tinted8-kakoune" theme config %{
colorscheme base16-ayu-dark
}Move colors/*.kak files into $HOME/.config/kak/colors or create a symlink
of colors directory. It's recommeded that you symlink the colors directory,
so that you can update the colors by simply doing a git pull in your local
copy of tinted-kakoune
cd $HOME/.config/kak
git clone https://github.com/tinted-theming/tinted-kakoune.git
if [ ! -d "./colors" ]; then mkdir "colors"; fi
cp ./tinted-kakoune/colors/* ./colors
rm -rf ./tinted-kakounecd $HOME/.config
git clone https://github.com/tinted-theming/tinted-kakoune.git
ln -s $HOME/.config/tinted-kakoune/colors $HOME/.config/kak/colorsAnd to update the themes:
cd $HOME/.config/tinted-kakoune && git pullIn command mode, change the colorscheme in Kakoune by typing colorscheme base16- and an autocomplete list of the colorschemes should appear.
For usage with tinted-shell, add the following to your kakrc file and your
theme will update whenever you update your theme via tinted-shell.
evaluate-commands %sh{
echo "colorscheme base16-$BASE16_THEME"
}See CONTRIBUTING.md, which contains building and contributing instructions.