My configurations for the software I use
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 32cbce12 afb5e0a0

+47 -9
+7 -7
config/kak/colors/theme.kak
··· 30 30 face global SecondaryCursor default,magenta+f 31 31 face global PrimaryCursorEol default,bright-magenta+f 32 32 face global SecondaryCursorEol default,magenta+f 33 - face global LineNumbers bright-black,default 33 + face global LineNumbers bright-white,default 34 34 face global LineNumberCursor default,default+b 35 - face global LineNumbersWrapped white,default 36 - face global MenuForeground yellow,bright-white+b 37 - face global MenuBackground default,bright-white 35 + face global LineNumbersWrapped black,default 36 + face global MenuForeground yellow,bright-black+b 37 + face global MenuBackground default,bright-black 38 38 face global MenuInfo cyan,default+a 39 39 face global Information default,bright-yellow 40 40 face global Error default,bright-red+f ··· 42 42 face global DiagnosticWarning yellow+b 43 43 face global DiagnosticTagDeprecated red+s 44 44 face global DiagnosticTagUnnecessary +c 45 - face global StatusLine default,white 45 + face global StatusLine default,black 46 46 face global StatusLineMode magenta,default+b 47 47 face global StatusLineInfo blue,default+b 48 48 face global StatusLineValue green,default+b ··· 50 50 face global Prompt default,default 51 51 face global MatchingChar default,default+bu 52 52 face global Whitespace red,default+b 53 - face global BufferPadding white,default+b 53 + face global BufferPadding black,default+b 54 54 face global LineFlagError red+b 55 55 face global LineFlagWarning yellow+b 56 - face global InlayHint bright-black+i 56 + face global InlayHint bright-white+i
+2 -2
config/kak/kakrc
··· 83 83 m-columnindicator %{ 84 84 evaluate-commands %sh{ 85 85 [ "$1" = add ] && { 86 - [ "$3" ] && color=$3 || color=default,bright-white 86 + [ "$3" ] && color=$3 || color=default,bright-black 87 87 printf '%s\n' "eval addhl window/ column $(($2 + 1)) $color" 88 88 } 89 89 90 90 [ "$1" = remove ] && { 91 - [ "$3" ] && color=$3 || color=default,bright-white 91 + [ "$3" ] && color=$3 || color=default,bright-black 92 92 printf '%s\n' "eval rmhl window/column_$(($2 + 1))_$color" 93 93 } 94 94 }
+38
config/thm/themes/light3.theme
··· 1 + #!/bin/sh 2 + 3 + theme_type="light" 4 + 5 + bg_color="efefef" 6 + fg_color="1f1f1f" 7 + 8 + # Black 9 + color0="d2d2d2" 10 + color8="dfdfdf" 11 + 12 + # Red 13 + color1="e67b7b" 14 + color9="ed9a9a" 15 + 16 + # Green 17 + color2="80ba63" 18 + color10="a3d989" 19 + 20 + # Yellow 21 + color3="f5a868" 22 + color11="f7c297" 23 + 24 + # Blue 25 + color4="849ce6" 26 + color12="a6baf5" 27 + 28 + # Magenta 29 + color5="b37fe3" 30 + color13="d1adf2" 31 + 32 + # Cyan 33 + color6="6ebdc4" 34 + color14="bedcde" 35 + 36 + # White 37 + color7="3f3f3f" 38 + color15="6a6a6a"