--- a/hgext/color.py Wed Aug 18 23:37:26 2010 +0200
+++ b/hgext/color.py Wed Jul 28 23:05:03 2010 -0600
@@ -62,6 +62,11 @@
bookmarks.current = green
+ branches.active = none
+ branches.closed = black bold
+ branches.current = green
+ branches.inactive = none
+
The color extension will try to detect whether to use ANSI codes or
Win32 console APIs, unless it is made explicit::
@@ -87,6 +92,10 @@
'cyan_background': 46, 'white_background': 47}
_styles = {'grep.match': 'red bold',
+ 'branches.active': 'none',
+ 'branches.closed': 'black bold',
+ 'branches.current': 'green',
+ 'branches.inactive': 'none',
'diff.changed': 'white',
'diff.deleted': 'red',
'diff.diffline': 'bold',