Sfoglia il codice sorgente

No more lightgreen, it's unreadable in solarized color scheme

People complains lightgreen is nearly unreadable in solarized dark color
scheme.  Use green instead, which looks good enough for both
Matthew Wang 9 anni fa
parent
commit
9d7c723102
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      cdiff.py

+ 1
- 1
cdiff.py Vedi File

@@ -590,7 +590,7 @@ class DiffMarker(object):
590 590
         return colorize(line, 'lightred')
591 591
 
592 592
     def _markup_new(self, line):
593
-        return colorize(line, 'lightgreen')
593
+        return colorize(line, 'green')
594 594
 
595 595
     def _markup_mix(self, line, base_color):
596 596
         del_code = COLORS['reverse'] + COLORS[base_color]