themegen: use correct default content colors

This commit is contained in:
Fernando Schauenburg 2021-08-16 15:12:39 +02:00
parent 5004d82c2d
commit 5b6ac63a38
2 changed files with 3 additions and 3 deletions

View file

@ -284,7 +284,7 @@ font:
# Colors (Solarized Dark)
colors:
primary:
foreground: '0x93a1a1' # Base1
foreground: '0x839496' # Base0
background: '0x002b36' # Base03
cursor:
text: '0x93a1a1' # Base1

View file

@ -64,8 +64,8 @@ def mintty_gen_config(colors, fg, bg, cursor):
))
SOLARIZED_DARK = dict(fg='Base1', bg='Base03', cursor='Red')
SOLARIZED_LIGHT = dict(fg='Base01', bg='Base3', cursor='Red')
SOLARIZED_DARK = dict(fg='Base0', bg='Base03', cursor='Red')
SOLARIZED_LIGHT = dict(fg='Base00', bg='Base3', cursor='Red')
SOLARIZED = {c.name: c for c in (
Color('Base03', '002B36', 8, 'brblack', RGB( 0, 43, 54)),
Color('Base02', '073642', 0, 'black', RGB( 7, 54, 66)),