mirror of
https://github.com/joshdick/onedark.vim.git
synced 2025-11-17 15:33:39 -05:00
* Add KiTTY configuration (manually; could potentially use https://github.com/stayradiated/termcolors/pull/17/ in the future) * Tweak foreground/background/white/black colors to be visually distinct from one another Closes #200.
35 lines
710 B
Plaintext
35 lines
710 B
Plaintext
# Colors (One Dark)
|
|
colors:
|
|
# Default colors
|
|
primary:
|
|
foreground: '0x{{=c.foreground}}'
|
|
background: '0x{{=c.background}}'
|
|
|
|
# Cursor colors
|
|
cursor:
|
|
text: '0x{{=c[0]}}'
|
|
cursor: '0x{{=c[7]}}'
|
|
|
|
# Normal colors
|
|
normal:
|
|
black: '0x{{=c[0]}}'
|
|
red: '0x{{=c[1]}}'
|
|
green: '0x{{=c[2]}}'
|
|
yellow: '0x{{=c[3]}}'
|
|
blue: '0x{{=c[4]}}'
|
|
magenta: '0x{{=c[5]}}'
|
|
cyan: '0x{{=c[6]}}'
|
|
white: '0x{{=c[7]}}'
|
|
|
|
# Bright colors
|
|
bright:
|
|
black: '0x{{=c[8]}}'
|
|
red: '0x{{=c[9]}}'
|
|
green: '0x{{=c[10]}}'
|
|
yellow: '0x{{=c[11]}}'
|
|
blue: '0x{{=c[12]}}'
|
|
magenta: '0x{{=c[13]}}'
|
|
cyan: '0x{{=c[14]}}'
|
|
white: '0x{{=c[15]}}'
|
|
|