97 lines
2.4 KiB
YAML
97 lines
2.4 KiB
YAML
color_set:
|
|
text: &TEXT "#CAD3F5"
|
|
subtext0: &SUBTEXT0 "#E3E3F3"
|
|
subtext1: &SUBTEXT1 "#CED4E0"
|
|
surface2: &SURFACE2 "#5B6078"
|
|
surface1: &SURFACE1 "#494D64"
|
|
index16: &INDEX16 "#ED6C13"
|
|
index17: &INDEX17 "#F4DBD6"
|
|
base: &BASE "#24273A"
|
|
red: &RED "#ED6070"
|
|
green: &GREEN "#A6DA95"
|
|
blue: &BLUE "#8AADF4"
|
|
yellow: &YELLOW "#EED49F"
|
|
pink: &PINK "#F5BDE6"
|
|
teal: &TEAL "#8BD5CA"
|
|
rosewater: &ROSEWATER "#F4DBD6"
|
|
lavender: &LAVENDER "#B7BDF8"
|
|
|
|
colors:
|
|
# Default colors
|
|
primary:
|
|
background: *BASE # base
|
|
foreground: *TEXT # text
|
|
# Bright and dim foreground colors
|
|
dim_foreground: *TEXT # text
|
|
bright_foreground: *TEXT # text
|
|
|
|
# Cursor colors
|
|
cursor:
|
|
text: *BASE # base
|
|
cursor: *ROSEWATER # rosewater
|
|
vi_mode_cursor:
|
|
text: *BASE # base
|
|
cursor: *LAVENDER # lavender
|
|
|
|
# Search colors
|
|
search:
|
|
matches:
|
|
foreground: *BASE # base
|
|
background: *SUBTEXT0 # subtext0
|
|
focused_match:
|
|
foreground: *BASE # base
|
|
background: *GREEN # green
|
|
footer_bar:
|
|
foreground: *BASE # base
|
|
background: *SUBTEXT0 # subtext0
|
|
|
|
# Keyboard regex hints
|
|
hints:
|
|
start:
|
|
foreground: *BASE # base
|
|
background: *YELLOW # yellow
|
|
end:
|
|
foreground: *BASE # base
|
|
background: *SUBTEXT0 # subtext0
|
|
|
|
# Selection colors
|
|
selection:
|
|
text: *BASE # base
|
|
background: *ROSEWATER # rosewater
|
|
|
|
# Normal colors
|
|
normal:
|
|
black: *SURFACE1 # surface1
|
|
red: *RED # red
|
|
green: *GREEN # green
|
|
yellow: *YELLOW # yellow
|
|
blue: *BLUE # blue
|
|
magenta: *PINK # pink
|
|
cyan: *TEAL # teal
|
|
white: *SUBTEXT1 # subtext1
|
|
|
|
# Bright colors
|
|
bright:
|
|
black: *SURFACE2 # surface2
|
|
red: *RED # red
|
|
green: *GREEN # green
|
|
yellow: *YELLOW # yellow
|
|
blue: *BLUE # blue
|
|
magenta: *PINK # pink
|
|
cyan: *TEAL # teal
|
|
white: *SUBTEXT0 # subtext0
|
|
|
|
# Dim colors
|
|
dim:
|
|
black: *SURFACE1 # surface1
|
|
red: *RED # red
|
|
green: *GREEN # green
|
|
yellow: *YELLOW # yellow
|
|
blue: *BLUE # blue
|
|
magenta: *PINK # pink
|
|
cyan: *TEAL # teal
|
|
white: *SUBTEXT1 # subtext1
|
|
|
|
indexed_colors:
|
|
- { index: 16, color: *INDEX16 }
|
|
- { index: 17, color: *INDEX17 }
|