rose-pine.kak/colors/rose-pine-moon.kak

78 lines
2.1 KiB
Plaintext
Raw Normal View History

2021-09-08 00:41:27 +00:00
evaluate-commands %sh{
base=rgb:232136
surface=rgb:2a273f
overlay=rgb:393552
inactive=rgb:59546d
subtle=rgb:817c9c
text=rgb:e0def4
love=rgb:eb6f92
gold=rgb:f6c177
rose=rgb:ea9a97
pine=rgb:3e8fb0
foam=rgb:9ccfd8
iris=rgb:c4a7e7
highlight=rgb:312f44
highlightInactive=rgb:2a283d
highlightOverlay=rgb:3f3c53
## code
echo "
face global value ${iris}
face global type ${iris}
face global identifier ${subtle}
face global string ${gold}
face global keyword ${pine}
face global operator default
face global attribute ${subtle}
face global comment ${subtle}+i
face global meta ${foam}
face global builtin ${foam}+b
face global variable ${rose}
face global module ${foam}
face global function ${foam}
"
## markup
echo "
face global title ${foam}+b
face global header ${foam}+b
face global bold ${gold}+b
face global italic ${iris}
face global mono ${rose}
face global block ${pine}
face global link ${love}
face global bullet ${rose}
face global list ${rose}
"
## builtin
echo "
face global Default ${text},${base}
face global PrimarySelection default,${highlight}
# We should use highlightInactive, however it makes it hard to notice the selection and inactive selections are important in Kakoune!
face global SecondarySelection default,${overlay}
face global PrimaryCursor ${base},${text}
face global SecondaryCursor default,${inactive}
face global LineNumbers ${overlay},${base}
face global LineNumberCursor ${gold},${base}
face global MenuForeground ${base},${foam}
face global MenuBackground ${text},${overlay}
face global MenuInfo ${overlay}
face global Information ${text},${overlay}
face global Error ${base},${love}
face global StatusLine ${text},${surface}
face global StatusLineMode ${rose}
face global StatusLineInfo ${foam}
face global StatusLineValue ${pine}
face global StatusCursor ${base},${text}
face global Prompt ${foam},${surface}
face global MatchingChar default+u
face global BufferPadding ${inactive},${base}
face global Whitespace ${inactive}+f
"
}