kakoune: five-colors dark and light theme, use it

This commit is contained in:
2026-05-18 23:33:28 +02:00
parent ab463f9a8d
commit 80594fb9cd
3 changed files with 255 additions and 5 deletions

View File

@@ -32,8 +32,8 @@ map global -docstring 'Open/create in dir' file-mode 'c' ': open-create-in-dir<r
map global -docstring 'Options' user 'o' ': enter-user-mode options-mode<ret>'
map global -docstring 'LP Dark mode' options-mode 'd' ': colorscheme four-colors-dark<ret>'
map global -docstring 'LP Light mode' options-mode 'l' ': colorscheme four-colors-light<ret>'
map global -docstring 'LP Dark mode' options-mode 'd' ': colorscheme five-colors-dark<ret>'
map global -docstring 'LP Light mode' options-mode 'l' ': colorscheme five-colors-light<ret>'
map global -docstring 'Light mode' options-mode 'L' ': colorscheme one-light<ret>'
map global -docstring 'Dark mode' options-mode 'D' ': colorscheme one-darker<ret>'
@@ -82,7 +82,7 @@ set-face global JumpLabel 'rgb:faf8f5,rgb:af8842+F'
# CHANGE STATUS BAR COLOR IN INSERT MODE
hook global ModeChange push:.*:insert %{
set-face window StatusLine 'default,rgb:1c4a21'
set-face window StatusLine 'default,rgb:04785d'
}
hook global ModeChange pop:insert:.* %{
@@ -205,8 +205,8 @@ bundle 'peneira' 'https://github.com/gustavo-hms/peneira' %{
colorscheme %sh{
if [ -e ~/.lightmode ]; then
echo four-colors-light
echo five-colors-light
else
echo four-colors-dark
echo five-colors-dark
fi
}