themegen: use correct default content colors
This commit is contained in:
parent
5004d82c2d
commit
5b6ac63a38
2 changed files with 3 additions and 3 deletions
|
@ -284,7 +284,7 @@ font:
|
||||||
# Colors (Solarized Dark)
|
# Colors (Solarized Dark)
|
||||||
colors:
|
colors:
|
||||||
primary:
|
primary:
|
||||||
foreground: '0x93a1a1' # Base1
|
foreground: '0x839496' # Base0
|
||||||
background: '0x002b36' # Base03
|
background: '0x002b36' # Base03
|
||||||
cursor:
|
cursor:
|
||||||
text: '0x93a1a1' # Base1
|
text: '0x93a1a1' # Base1
|
||||||
|
|
|
@ -64,8 +64,8 @@ def mintty_gen_config(colors, fg, bg, cursor):
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
SOLARIZED_DARK = dict(fg='Base1', bg='Base03', cursor='Red')
|
SOLARIZED_DARK = dict(fg='Base0', bg='Base03', cursor='Red')
|
||||||
SOLARIZED_LIGHT = dict(fg='Base01', bg='Base3', cursor='Red')
|
SOLARIZED_LIGHT = dict(fg='Base00', bg='Base3', cursor='Red')
|
||||||
SOLARIZED = {c.name: c for c in (
|
SOLARIZED = {c.name: c for c in (
|
||||||
Color('Base03', '002B36', 8, 'brblack', RGB( 0, 43, 54)),
|
Color('Base03', '002B36', 8, 'brblack', RGB( 0, 43, 54)),
|
||||||
Color('Base02', '073642', 0, 'black', RGB( 7, 54, 66)),
|
Color('Base02', '073642', 0, 'black', RGB( 7, 54, 66)),
|
||||||
|
|
Loading…
Add table
Reference in a new issue