Browse Source

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 10 years ago
parent
commit
9d7c723102
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      cdiff.py

+ 1
- 1
cdiff.py View File

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