My configurations for the software I use

Add light3

This variation of my light theme swaps the `black` and `white` colors.
This seems to be what terminal applications expect when using a light
theme.

yemou.pink 32cbce12 afb5e0a0

verified
Changed files
+47 -9
config
kak
colors
thm
themes
+7 -7
config/kak/colors/theme.kak
···
face global SecondaryCursor default,magenta+f
face global PrimaryCursorEol default,bright-magenta+f
face global SecondaryCursorEol default,magenta+f
-
face global LineNumbers bright-black,default
+
face global LineNumbers bright-white,default
face global LineNumberCursor default,default+b
-
face global LineNumbersWrapped white,default
-
face global MenuForeground yellow,bright-white+b
-
face global MenuBackground default,bright-white
+
face global LineNumbersWrapped black,default
+
face global MenuForeground yellow,bright-black+b
+
face global MenuBackground default,bright-black
face global MenuInfo cyan,default+a
face global Information default,bright-yellow
face global Error default,bright-red+f
···
face global DiagnosticWarning yellow+b
face global DiagnosticTagDeprecated red+s
face global DiagnosticTagUnnecessary +c
-
face global StatusLine default,white
+
face global StatusLine default,black
face global StatusLineMode magenta,default+b
face global StatusLineInfo blue,default+b
face global StatusLineValue green,default+b
···
face global Prompt default,default
face global MatchingChar default,default+bu
face global Whitespace red,default+b
-
face global BufferPadding white,default+b
+
face global BufferPadding black,default+b
face global LineFlagError red+b
face global LineFlagWarning yellow+b
-
face global InlayHint bright-black+i
+
face global InlayHint bright-white+i
+2 -2
config/kak/kakrc
···
m-columnindicator %{
evaluate-commands %sh{
[ "$1" = add ] && {
-
[ "$3" ] && color=$3 || color=default,bright-white
+
[ "$3" ] && color=$3 || color=default,bright-black
printf '%s\n' "eval addhl window/ column $(($2 + 1)) $color"
}
[ "$1" = remove ] && {
-
[ "$3" ] && color=$3 || color=default,bright-white
+
[ "$3" ] && color=$3 || color=default,bright-black
printf '%s\n' "eval rmhl window/column_$(($2 + 1))_$color"
}
}
+38
config/thm/themes/light3.theme
···
+
#!/bin/sh
+
+
theme_type="light"
+
+
bg_color="efefef"
+
fg_color="1f1f1f"
+
+
# Black
+
color0="d2d2d2"
+
color8="dfdfdf"
+
+
# Red
+
color1="e67b7b"
+
color9="ed9a9a"
+
+
# Green
+
color2="80ba63"
+
color10="a3d989"
+
+
# Yellow
+
color3="f5a868"
+
color11="f7c297"
+
+
# Blue
+
color4="849ce6"
+
color12="a6baf5"
+
+
# Magenta
+
color5="b37fe3"
+
color13="d1adf2"
+
+
# Cyan
+
color6="6ebdc4"
+
color14="bedcde"
+
+
# White
+
color7="3f3f3f"
+
color15="6a6a6a"