aboutsummaryrefslogtreecommitdiff
path: root/dot_config/kak/colors
diff options
context:
space:
mode:
authortwells46 <173561638+twells46@users.noreply.github.com>2025-12-31 13:28:05 -0600
committertwells46 <173561638+twells46@users.noreply.github.com>2025-12-31 13:28:05 -0600
commit2140ab51deed88e90eafebf9520fa5f9995dc7c9 (patch)
tree03cf1dcd2900495c1efb79aaa85f3254ecd5fb87 /dot_config/kak/colors
parentff8f50638e4b17a9d7cc88d2f0d9560b7effce39 (diff)
Migrate from stow
Diffstat (limited to 'dot_config/kak/colors')
-rw-r--r--dot_config/kak/colors/acme.kak50
-rw-r--r--dot_config/kak/colors/catppuccin_frappe.kak82
-rw-r--r--dot_config/kak/colors/catppuccin_latte.kak82
-rw-r--r--dot_config/kak/colors/catppuccin_macchiato.kak82
-rw-r--r--dot_config/kak/colors/catppuccin_mocha.kak82
5 files changed, 378 insertions, 0 deletions
diff --git a/dot_config/kak/colors/acme.kak b/dot_config/kak/colors/acme.kak
new file mode 100644
index 0000000..ff8f0ce
--- /dev/null
+++ b/dot_config/kak/colors/acme.kak
@@ -0,0 +1,50 @@
+# Kakoune acme colors
+
+# For default
+face global value default
+face global type default
+face global identifier default
+face global string rgb:A0342F
+face global keyword default
+face global operator default
+face global attribute default
+face global comment rgb:065905
+face global documentation comment
+face global meta default
+face global builtin default
+
+
+# For default
+face global title default+b
+face global header default+b
+face global mono default
+face global block default
+face global link blue
+face global bullet default
+face global list default
+
+# builtin default
+face global Default rgb:000000,rgb:FFFFEA
+face global PrimarySelection rgb:000000,rgb:EEEE9E
+face global SecondarySelection rgb:000000,rgb:AEEEEE
+face global PrimaryCursor black,white
+face global SecondaryCursor white,blue
+face global PrimaryCursorEol white,blue
+face global SecondaryCursorEol default
+face global LineNumbers default
+face global LineNumberCursor default
+face global MenuForeground rgb:000000,rgb:AEEEEE
+face global MenuBackground rgb:000000,rgb:EAFFFF
+face global MenuInfo rgb:000000,rgb:EAFFFF
+face global Information rgb:000000,rgb:EAFFFF
+face global Error default,rgb:B80900
+face global DiagnosticError default
+face global DiagnosticWarning default
+face global StatusLine rgb:000000,rgb:EAFFFF
+face global StatusLineMode default
+face global StatusLineInfo default
+face global StatusLineValue default
+face global StatusCursor default+r
+face global Prompt default
+face global MatchingChar default,rgb:AEEEEE+b
+face global BufferPadding default
diff --git a/dot_config/kak/colors/catppuccin_frappe.kak b/dot_config/kak/colors/catppuccin_frappe.kak
new file mode 100644
index 0000000..c5ec703
--- /dev/null
+++ b/dot_config/kak/colors/catppuccin_frappe.kak
@@ -0,0 +1,82 @@
+# Catppuccin Frappé
+
+evaluate-commands %sh{
+ rosewater='rgb:f2d5cf'
+ flamingo='rgb:eebebe'
+ pink='rgb:f4b8e4'
+ mauve='rgb:ca9ee6'
+ red='rgb:e78284'
+ maroon='rgb:ea999c'
+ peach='rgb:ef9f76'
+ yellow='rgb:e5c890'
+ green='rgb:a6d189'
+ teal='rgb:81c8be'
+ sky='rgb:99d1db'
+ sapphire='rgb:85c1dc'
+ blue='rgb:8caaee'
+ lavender='rgb:babbf1'
+ text='rgb:c6d0f5'
+ subtext1='rgb:b5bfe2'
+ subtext0='rgb:a5adce'
+ overlay2='rgb:949cbb'
+ overlay1='rgb:838ba7'
+ overlay0='rgb:737994'
+ surface2='rgb:626880'
+ surface1='rgb:51576d'
+ surface0='rgb:414559'
+ base='rgb:303446'
+ mantle='rgb:292c3c'
+ crust='rgb:232634'
+
+ echo "
+ set-face global title ${text}+b
+ set-face global header ${subtext0}+b
+ set-face global bold ${maroon}+b
+ set-face global italic ${maroon}+i
+ set-face global mono ${green}
+ set-face global block ${sapphire}
+ set-face global link ${blue}
+ set-face global bullet ${peach}
+ set-face global list ${peach}
+
+ set-face global Default ${text},${base}
+ set-face global PrimarySelection ${text},${surface2}
+ set-face global SecondarySelection ${text},${surface2}
+ set-face global PrimaryCursor ${crust},${rosewater}
+ set-face global SecondaryCursor ${text},${overlay0}
+ set-face global PrimaryCursorEol ${surface2},${lavender}
+ set-face global SecondaryCursorEol ${surface2},${overlay1}
+ set-face global LineNumbers ${overlay1},${base}
+ set-face global LineNumberCursor ${rosewater},${surface2}+b
+ set-face global LineNumbersWrapped ${rosewater},${surface2}
+ set-face global MenuForeground ${text},${surface1}+b
+ set-face global MenuBackground ${text},${surface0}
+ set-face global MenuInfo ${crust},${teal}
+ set-face global Information ${crust},${teal}
+ set-face global Error ${crust},${red}
+ set-face global StatusLine ${text},${mantle}
+ set-face global StatusLineMode ${crust},${yellow}
+ set-face global StatusLineInfo ${crust},${teal}
+ set-face global StatusLineValue ${crust},${yellow}
+ set-face global StatusCursor ${crust},${rosewater}
+ set-face global Prompt ${teal},${base}+b
+ set-face global MatchingChar ${maroon},${base}
+ set-face global Whitespace ${overlay1},${base}+f
+ set-face global WrapMarker Whitespace
+ set-face global BufferPadding ${base},${base}
+
+ set-face global value ${peach}
+ set-face global type ${blue}
+ set-face global variable ${text}
+ set-face global module ${maroon}
+ set-face global function ${blue}
+ set-face global string ${green}
+ set-face global keyword ${mauve}
+ set-face global operator ${sky}
+ set-face global attribute ${green}
+ set-face global comment ${overlay0}
+ set-face global documentation comment
+ set-face global meta ${yellow}
+ set-face global builtin ${red}
+ "
+}
diff --git a/dot_config/kak/colors/catppuccin_latte.kak b/dot_config/kak/colors/catppuccin_latte.kak
new file mode 100644
index 0000000..6d683da
--- /dev/null
+++ b/dot_config/kak/colors/catppuccin_latte.kak
@@ -0,0 +1,82 @@
+# Catppuccin Latte
+
+evaluate-commands %sh{
+ rosewater='rgb:dc8a78'
+ flamingo='rgb:dd7878'
+ pink='rgb:ea76cb'
+ mauve='rgb:8839ef'
+ red='rgb:d20f39'
+ maroon='rgb:e64553'
+ peach='rgb:fe640b'
+ yellow='rgb:df8e1d'
+ green='rgb:40a02b'
+ teal='rgb:179299'
+ sky='rgb:04a5e5'
+ sapphire='rgb:209fb5'
+ blue='rgb:1e66f5'
+ lavender='rgb:7287fd'
+ text='rgb:4c4f69'
+ subtext1='rgb:5c5f77'
+ subtext0='rgb:6c6f85'
+ overlay2='rgb:7c7f93'
+ overlay1='rgb:8c8fa1'
+ overlay0='rgb:9ca0b0'
+ surface2='rgb:acb0be'
+ surface1='rgb:bcc0cc'
+ surface0='rgb:ccd0da'
+ base='rgb:eff1f5'
+ mantle='rgb:e6e9ef'
+ crust='rgb:dce0e8'
+
+ echo "
+ set-face global title ${text}+b
+ set-face global header ${subtext0}+b
+ set-face global bold ${maroon}+b
+ set-face global italic ${maroon}+i
+ set-face global mono ${green}
+ set-face global block ${sapphire}
+ set-face global link ${blue}
+ set-face global bullet ${peach}
+ set-face global list ${peach}
+
+ set-face global Default ${text},${base}
+ set-face global PrimarySelection ${text},${surface2}
+ set-face global SecondarySelection ${text},${surface2}
+ set-face global PrimaryCursor ${crust},${rosewater}
+ set-face global SecondaryCursor ${text},${overlay0}
+ set-face global PrimaryCursorEol ${surface2},${lavender}
+ set-face global SecondaryCursorEol ${surface2},${overlay1}
+ set-face global LineNumbers ${overlay1},${base}
+ set-face global LineNumberCursor ${rosewater},${surface2}+b
+ set-face global LineNumbersWrapped ${rosewater},${surface2}+i
+ set-face global MenuForeground ${text},${surface1}+b
+ set-face global MenuBackground ${text},${surface0}
+ set-face global MenuInfo ${crust},${teal}
+ set-face global Information ${crust},${teal}
+ set-face global Error ${crust},${red}
+ set-face global StatusLine ${text},${mantle}
+ set-face global StatusLineMode ${crust},${yellow}
+ set-face global StatusLineInfo ${crust},${teal}
+ set-face global StatusLineValue ${crust},${yellow}
+ set-face global StatusCursor ${crust},${rosewater}
+ set-face global Prompt ${teal},${base}+b
+ set-face global MatchingChar ${maroon},${base}
+ set-face global Whitespace ${overlay1},${base}+f
+ set-face global WrapMarker Whitespace
+ set-face global BufferPadding ${base},${base}
+
+ set-face global value ${peach}
+ set-face global type ${blue}
+ set-face global variable ${text}
+ set-face global module ${maroon}
+ set-face global function ${blue}
+ set-face global string ${green}
+ set-face global keyword ${mauve}
+ set-face global operator ${sky}
+ set-face global attribute ${green}
+ set-face global comment ${overlay0}
+ set-face global documentation comment
+ set-face global meta ${yellow}
+ set-face global builtin ${red}
+ "
+}
diff --git a/dot_config/kak/colors/catppuccin_macchiato.kak b/dot_config/kak/colors/catppuccin_macchiato.kak
new file mode 100644
index 0000000..a8e44f2
--- /dev/null
+++ b/dot_config/kak/colors/catppuccin_macchiato.kak
@@ -0,0 +1,82 @@
+# Catppuccin Macchiato
+
+evaluate-commands %sh{
+ rosewater='rgb:f4dbd6'
+ flamingo='rgb:f0c6c6'
+ pink='rgb:f5bde6'
+ mauve='rgb:c6a0f6'
+ red='rgb:ed8796'
+ maroon='rgb:ee99a0'
+ peach='rgb:f5a97f'
+ yellow='rgb:eed49f'
+ green='rgb:a6da95'
+ teal='rgb:8bd5ca'
+ sky='rgb:91d7e3'
+ sapphire='rgb:7dc4e4'
+ blue='rgb:8aadf4'
+ lavender='rgb:b7bdf8'
+ text='rgb:cad3f5'
+ subtext1='rgb:b8c0e0'
+ subtext0='rgb:a5adcb'
+ overlay2='rgb:939ab7'
+ overlay1='rgb:8087a2'
+ overlay0='rgb:6e738d'
+ surface2='rgb:5b6078'
+ surface1='rgb:494d64'
+ surface0='rgb:363a4f'
+ base='rgb:24273a'
+ mantle='rgb:1e2030'
+ crust='rgb:181926'
+
+ echo "
+ set-face global title ${text}+b
+ set-face global header ${subtext0}+b
+ set-face global bold ${maroon}+b
+ set-face global italic ${maroon}+i
+ set-face global mono ${green}
+ set-face global block ${sapphire}
+ set-face global link ${blue}
+ set-face global bullet ${peach}
+ set-face global list ${peach}
+
+ set-face global Default ${text},${base}
+ set-face global PrimarySelection ${text},${surface2}
+ set-face global SecondarySelection ${text},${surface2}
+ set-face global PrimaryCursor ${crust},${rosewater}
+ set-face global SecondaryCursor ${text},${overlay0}
+ set-face global PrimaryCursorEol ${surface2},${lavender}
+ set-face global SecondaryCursorEol ${surface2},${overlay1}
+ set-face global LineNumbers ${overlay1},${base}
+ set-face global LineNumberCursor ${rosewater},${surface2}+b
+ set-face global LineNumbersWrapped ${rosewater},${surface2}
+ set-face global MenuForeground ${text},${surface1}+b
+ set-face global MenuBackground ${text},${surface0}
+ set-face global MenuInfo ${crust},${teal}
+ set-face global Information ${crust},${teal}
+ set-face global Error ${crust},${red}
+ set-face global StatusLine ${text},${mantle}
+ set-face global StatusLineMode ${crust},${yellow}
+ set-face global StatusLineInfo ${crust},${teal}
+ set-face global StatusLineValue ${crust},${yellow}
+ set-face global StatusCursor ${crust},${rosewater}
+ set-face global Prompt ${teal},${base}+b
+ set-face global MatchingChar ${maroon},${base}
+ set-face global Whitespace ${overlay1},${base}+f
+ set-face global WrapMarker Whitespace
+ set-face global BufferPadding ${base},${base}
+
+ set-face global value ${peach}
+ set-face global type ${blue}
+ set-face global variable ${text}
+ set-face global module ${maroon}
+ set-face global function ${blue}
+ set-face global string ${green}
+ set-face global keyword ${mauve}
+ set-face global operator ${sky}
+ set-face global attribute ${green}
+ set-face global comment ${overlay0}
+ set-face global documentation comment
+ set-face global meta ${yellow}
+ set-face global builtin ${red}
+ "
+}
diff --git a/dot_config/kak/colors/catppuccin_mocha.kak b/dot_config/kak/colors/catppuccin_mocha.kak
new file mode 100644
index 0000000..4b9ad06
--- /dev/null
+++ b/dot_config/kak/colors/catppuccin_mocha.kak
@@ -0,0 +1,82 @@
+# Catppuccin Mocha
+
+evaluate-commands %sh{
+ rosewater='rgb:f5e0dc'
+ flamingo='rgb:f2cdcd'
+ pink='rgb:f5c2e7'
+ mauve='rgb:cba6f7'
+ red='rgb:f38ba8'
+ maroon='rgb:eba0ac'
+ peach='rgb:fab387'
+ yellow='rgb:f9e2af'
+ green='rgb:a6e3a1'
+ teal='rgb:94e2d5'
+ sky='rgb:89dceb'
+ sapphire='rgb:74c7ec'
+ blue='rgb:89b4fa'
+ lavender='rgb:b4befe'
+ text='rgb:cdd6f4'
+ subtext1='rgb:bac2de'
+ subtext0='rgb:a6adc8'
+ overlay2='rgb:9399b2'
+ overlay1='rgb:7f849c'
+ overlay0='rgb:6c7086'
+ surface2='rgb:585b70'
+ surface1='rgb:45475a'
+ surface0='rgb:313244'
+ base='rgb:1e1e2e'
+ mantle='rgb:181825'
+ crust='rgb:11111b'
+
+ echo "
+ set-face global title ${text}+b
+ set-face global header ${subtext0}+b
+ set-face global bold ${maroon}+b
+ set-face global italic ${maroon}+i
+ set-face global mono ${green}
+ set-face global block ${sapphire}
+ set-face global link ${blue}
+ set-face global bullet ${peach}
+ set-face global list ${peach}
+
+ set-face global Default ${text},${base}
+ set-face global PrimarySelection ${text},${surface2}
+ set-face global SecondarySelection ${text},${surface2}
+ set-face global PrimaryCursor ${crust},${rosewater}
+ set-face global SecondaryCursor ${text},${overlay0}
+ set-face global PrimaryCursorEol ${surface2},${lavender}
+ set-face global SecondaryCursorEol ${surface2},${overlay1}
+ set-face global LineNumbers ${overlay1},${base}
+ set-face global LineNumberCursor ${rosewater},${surface2}+b
+ set-face global LineNumbersWrapped ${rosewater},${surface2}
+ set-face global MenuForeground ${text},${surface1}+b
+ set-face global MenuBackground ${text},${surface0}
+ set-face global MenuInfo ${crust},${teal}
+ set-face global Information ${crust},${teal}
+ set-face global Error ${crust},${red}
+ set-face global StatusLine ${text},${mantle}
+ set-face global StatusLineMode ${crust},${yellow}
+ set-face global StatusLineInfo ${crust},${teal}
+ set-face global StatusLineValue ${crust},${yellow}
+ set-face global StatusCursor ${crust},${rosewater}
+ set-face global Prompt ${teal},${base}+b
+ set-face global MatchingChar ${maroon},${base}
+ set-face global Whitespace ${overlay1},${base}+f
+ set-face global WrapMarker Whitespace
+ set-face global BufferPadding ${base},${base}
+
+ set-face global value ${peach}
+ set-face global type ${blue}
+ set-face global variable ${text}
+ set-face global module ${maroon}
+ set-face global function ${blue}
+ set-face global string ${green}
+ set-face global keyword ${mauve}
+ set-face global operator ${sky}
+ set-face global attribute ${green}
+ set-face global comment ${overlay0}
+ set-face global documentation comment
+ set-face global meta ${yellow}
+ set-face global builtin ${red}
+ "
+}