summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorMichael Turquette <mturquette@deferred.io>2013-01-07 19:37:38 -0800
committerMichael Turquette <mturquette@deferred.io>2013-01-07 19:59:12 -0800
commitdd327e0a88484c65c78eeb85a5bf58971c0fbd60 (patch)
treec37c1bdca8abec121ca0ef4b8942b1966aa04cbf /extra
parent5b5dbecb5a03840b751219db90bcf4dcffda315e (diff)
solarized_dark: improve 256 color approximation
Solarized colors for 256 color palettes are not as closely approximated as they could be. 256_base0 is set to g66 in Urwid's 256 color palette. This corresponds to #a8a8a8 in Xterm. base0 should ideally be #808080. This matches g50 exactly, so switch to that grayscale value. 256_base1 is set to g70 in Urwid's 256 color palette. This corresponds to #b2b2b2 in Xterm. base1 should ideally be #8a8a8a. We can't get this exactly with Urwid's 256 color palette, but #848484 is a closer approximation. Switch to g52 to get this grayscale value. 256_cyan is set to #088 in Urwid's 256 color palette. This corresponds to #008787 in Xterm. cyan should ideally be #00afaf. This matches #0aa exactly, so switch to that value. Signed-off-by: Michael Turquette <mturquette@deferred.io>
Diffstat (limited to 'extra')
-rw-r--r--extra/themes/solarized_dark6
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/themes/solarized_dark b/extra/themes/solarized_dark
index f743cf81..500aa5e0 100644
--- a/extra/themes/solarized_dark
+++ b/extra/themes/solarized_dark
@@ -32,8 +32,8 @@
256_base02 = 'black'
256_base01 = 'light green'
256_base00 = 'yellow'
-256_base0 = 'g66'
-256_base1 = 'g70'
+256_base0 = 'g50' #808080
+256_base1 = 'g52' #848484 - approximates #8a8a8a
256_base2 = 'light gray'
256_base3 = 'white'
256_yellow = 'brown'
@@ -42,7 +42,7 @@
256_magenta = 'dark magenta'
256_violet = 'light magenta'
256_blue = 'dark blue'
-256_cyan = '#088'
+256_cyan = '#0aa' #00afaf
256_green = 'dark green'