##// END OF EJS Templates
color: add styles for tags
Marc Simpson -
r15048:2f0a3977 default
parent child Browse files
Show More
@@ -68,6 +68,9 b' Default effects may be overridden from y'
68 branches.current = green
68 branches.current = green
69 branches.inactive = none
69 branches.inactive = none
70
70
71 tags.normal = green
72 tags.local = black bold
73
71 The available effects in terminfo mode are 'blink', 'bold', 'dim',
74 The available effects in terminfo mode are 'blink', 'bold', 'dim',
72 'inverse', 'invisible', 'italic', 'standout', and 'underline'; in
75 'inverse', 'invisible', 'italic', 'standout', and 'underline'; in
73 ECMA-48 mode, the options are 'bold', 'inverse', 'italic', and
76 ECMA-48 mode, the options are 'bold', 'inverse', 'italic', and
@@ -257,7 +260,9 b' except ImportError:'
257 'status.ignored': 'black bold',
260 'status.ignored': 'black bold',
258 'status.modified': 'blue bold',
261 'status.modified': 'blue bold',
259 'status.removed': 'red bold',
262 'status.removed': 'red bold',
260 'status.unknown': 'magenta bold underline'}
263 'status.unknown': 'magenta bold underline',
264 'tags.normal': 'green',
265 'tags.local': 'black bold'}
261
266
262
267
263 def _effect_str(effect):
268 def _effect_str(effect):
General Comments 0
You need to be logged in to leave comments. Login now