Set color schemes to solarized
This commit is contained in:
parent
f72345ca50
commit
58bf5eb42c
|
@ -131,59 +131,74 @@ render_timer: false
|
||||||
# and cursor.background colors, otherwise invert the colors of the cursor.
|
# and cursor.background colors, otherwise invert the colors of the cursor.
|
||||||
custom_cursor_colors: false
|
custom_cursor_colors: false
|
||||||
|
|
||||||
# Colors (Tomorrow Night Bright)
|
schemes:
|
||||||
colors:
|
solarized_light: &light
|
||||||
# Default colors
|
# Default colors
|
||||||
primary:
|
primary:
|
||||||
background: '0x000000'
|
background: '0xfdf6e3' # base3
|
||||||
foreground: '0xeaeaea'
|
foreground: '0x657b83' # base00
|
||||||
|
|
||||||
# (Optional) Bright and Dim foreground colors
|
# Cursor colors
|
||||||
#
|
cursor:
|
||||||
# The dimmed foreground color is calculated automatically if it is not present.
|
text: '0xfdf6e3' # base3
|
||||||
# If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
|
cursor: '0x657b83' # base00
|
||||||
# is `false`, the normal foreground color will be used.
|
|
||||||
#
|
|
||||||
# dim_foreground: '0x9a9a9a'
|
|
||||||
# bright_foreground: '0xffffff'
|
|
||||||
|
|
||||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
# Normal colors
|
||||||
cursor:
|
normal:
|
||||||
text: '0x000000'
|
black: '0x073642' # base02
|
||||||
cursor: '0xffffff'
|
red: '0xdc322f' # red
|
||||||
|
green: '0x859900' # green
|
||||||
|
yellow: '0xb58900' # yellow
|
||||||
|
blue: '0x268bd2' # blue
|
||||||
|
magenta: '0xd33682' # magenta
|
||||||
|
cyan: '0x2aa198' # cyan
|
||||||
|
white: '0xeee8d5' # base2
|
||||||
|
|
||||||
# Normal colors
|
# Bright colors
|
||||||
normal:
|
bright:
|
||||||
black: '0x000000'
|
black: '0x002b36' # base03
|
||||||
red: '0xd54e53'
|
red: '0xcb4b16' # orange
|
||||||
green: '0xb9ca4a'
|
green: '0x586e75' # base01
|
||||||
yellow: '0xe6c547'
|
yellow: '0x657b83' # base00
|
||||||
blue: '0x7aa6da'
|
blue: '0x839496' # base0
|
||||||
magenta: '0xc397d8'
|
magenta: '0x6c71c4' # violet
|
||||||
cyan: '0x70c0ba'
|
cyan: '0x93a1a1' # base1
|
||||||
white: '0xffffff'
|
white: '0xfdf6e3' # base3
|
||||||
|
|
||||||
# Bright colors
|
solarized_dark: &dark
|
||||||
bright:
|
# Default colors
|
||||||
black: '0x666666'
|
primary:
|
||||||
red: '0xff3334'
|
background: '0x002b36' # base03
|
||||||
green: '0x9ec400'
|
foreground: '0x839496' # base0
|
||||||
yellow: '0xe7c547'
|
|
||||||
blue: '0x7aa6da'
|
|
||||||
magenta: '0xb77ee0'
|
|
||||||
cyan: '0x54ced6'
|
|
||||||
white: '0xffffff'
|
|
||||||
|
|
||||||
# Dim colors (Optional)
|
# Cursor colors
|
||||||
dim:
|
cursor:
|
||||||
black: '0x333333'
|
text: '0x002b36' # base03
|
||||||
red: '0xf2777a'
|
cursor: '0x839496' # base0
|
||||||
green: '0x99cc99'
|
|
||||||
yellow: '0xffcc66'
|
# Normal colors
|
||||||
blue: '0x6699cc'
|
normal:
|
||||||
magenta: '0xcc99cc'
|
black: '0x073642' # base02
|
||||||
cyan: '0x66cccc'
|
red: '0xdc322f' # red
|
||||||
white: '0xdddddd'
|
green: '0x859900' # green
|
||||||
|
yellow: '0xb58900' # yellow
|
||||||
|
blue: '0x268bd2' # blue
|
||||||
|
magenta: '0xd33682' # magenta
|
||||||
|
cyan: '0x2aa198' # cyan
|
||||||
|
white: '0xeee8d5' # base2
|
||||||
|
|
||||||
|
# Bright colors
|
||||||
|
bright:
|
||||||
|
black: '0x002b36' # base03
|
||||||
|
red: '0xcb4b16' # orange
|
||||||
|
green: '0x586e75' # base01
|
||||||
|
yellow: '0x657b83' # base00
|
||||||
|
blue: '0x839496' # base0
|
||||||
|
magenta: '0x6c71c4' # violet
|
||||||
|
cyan: '0x93a1a1' # base1
|
||||||
|
white: '0xfdf6e3' # base3
|
||||||
|
|
||||||
|
colors: *light
|
||||||
|
|
||||||
# Visual Bell
|
# Visual Bell
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue