summaryrefslogtreecommitdiffstats
path: root/colors/undoo.kak
diff options
context:
space:
mode:
authorNanderty <psopka@sopka.ch>2025-08-25 20:03:34 +0200
committerNanderty <psopka@sopka.ch>2025-08-25 20:03:34 +0200
commit0171cf4e6f2acf2b13d9ee7ce129e10e547c8173 (patch)
tree9753d44fd2170b61a04b17b9fbe165c6d07013b5 /colors/undoo.kak
downloadkakoune-config-0171cf4e6f2acf2b13d9ee7ce129e10e547c8173.tar.gz
kakoune-config-0171cf4e6f2acf2b13d9ee7ce129e10e547c8173.tar.bz2
kakoune-config-0171cf4e6f2acf2b13d9ee7ce129e10e547c8173.zip
Initial commit
Diffstat (limited to 'colors/undoo.kak')
-rw-r--r--colors/undoo.kak87
1 files changed, 87 insertions, 0 deletions
diff --git a/colors/undoo.kak b/colors/undoo.kak
new file mode 100644
index 0000000..799fa3b
--- /dev/null
+++ b/colors/undoo.kak
@@ -0,0 +1,87 @@
+# Undoo theme for Kakoune
+
+# Color palette
+# declare-option str black 'rgb:101010'
+declare-option str black default
+declare-option str gray 'rgb:808080'
+declare-option str dark 'rgb:454545'
+declare-option str white 'rgb:c0c0c0'
+declare-option str blue 'rgb:a3b8ef'
+declare-option str cyan 'rgb:50cacd'
+declare-option str aqua 'rgb:5accaf'
+declare-option str green 'rgb:80c990'
+declare-option str amber 'rgb:a69460'
+declare-option str orange 'rgb:e0af85'
+declare-option str pink 'rgb:f2a1c2'
+declare-option str purple 'rgb:ccaced'
+declare-option str red 'rgb:efa6a2'
+declare-option str yellow 'rgb:c8c874'
+declare-option str azure 'rgb:74c3e4'
+declare-option str dimgray 'rgb:353535'
+declare-option str psel 'rgba:46465080'
+declare-option str ssel 'rgba:3c3c5080'
+
+declare-option str background %opt{black}
+declare-option str dimmed_background %opt{gray}
+declare-option str foreground %opt{white}
+
+# Reference
+# https://github.com/mawww/kakoune/blob/master/colors/default.kak
+# For code
+set-face global value "%opt{purple}"
+set-face global type "%opt{cyan}"
+set-face global variable "%opt{orange}"
+set-face global module "%opt{white}"
+set-face global function "%opt{azure}"
+set-face global string "%opt{green}"
+set-face global keyword "%opt{pink}"
+set-face global operator "%opt{cyan}"
+set-face global attribute "%opt{blue}"
+set-face global bracket "%opt{white}+b"
+set-face global arguement "%opt{orange}"
+set-face global comma "%opt{white}"
+set-face global comment "%opt{gray}+i"
+set-face global docstring "%opt{gray}+i"
+set-face global meta "%opt{pink}"
+set-face global builtin "%opt{cyan}"
+set-face global class "%opt{yellow}+b"
+set-face global constant "%opt{yellow}"
+
+# For markup
+set-face global title "%opt{pink}"
+set-face global header "%opt{orange}"
+set-face global bold "%opt{pink}"
+set-face global italic "%opt{purple}"
+set-face global mono "%opt{green}"
+set-face global block "%opt{cyan}"
+set-face global link "%opt{green}"
+set-face global bullet "%opt{green}"
+set-face global list "%opt{white}"
+
+# Builtin faces
+set-face global Default "%opt{white},%opt{black}"
+# set-face global Default default,default
+set-face global PrimarySelection "default,%opt{psel}"
+set-face global SecondarySelection "default,%opt{ssel}"
+set-face global PrimaryCursor "%opt{dark},%opt{purple}"
+set-face global SecondaryCursor "%opt{dark},%opt{blue}"
+set-face global PrimaryCursorEol "%opt{dark},%opt{orange}"
+set-face global SecondaryCursorEol "%opt{dark},%opt{aqua}"
+set-face global LineNumbers "%opt{gray},%opt{black}"
+set-face global LineNumberCursor "%opt{blue},%opt{black}+b"
+set-face global LineNumbersWrapped "%opt{gray},%opt{black}+i"
+set-face global MenuForeground "%opt{dark},%opt{aqua}+b"
+set-face global MenuBackground "%opt{white},%opt{dark}"
+set-face global MenuInfo "%opt{dark},%opt{orange}"
+set-face global Information "%opt{yellow},%opt{black}"
+set-face global Error "%opt{red},%opt{black}"
+set-face global StatusLine "%opt{white},%opt{black}"
+set-face global StatusLineMode "%opt{green},%opt{black}"
+set-face global StatusLineInfo "%opt{purple},%opt{black}"
+set-face global StatusLineValue "%opt{orange},%opt{black}"
+set-face global StatusCursor "%opt{white},%opt{blue}"
+set-face global Prompt "%opt{green},%opt{black}"
+set-face global MatchingChar "%opt{black},%opt{blue}"
+set-face global Whitespace "%opt{dimgray},%opt{black}+f"
+set-face global WrapMarker Whitespace
+set-face global BufferPadding "%opt{gray},%opt{black}"