hgext3rd/topic/__init__.py
changeset 1908 dbd6d51e63f1
parent 1907 95874e8fc5f2
child 1909 36112e361ee4
--- a/hgext3rd/topic/__init__.py	Mon Mar 14 19:03:32 2016 +0000
+++ b/hgext3rd/topic/__init__.py	Mon Mar 14 19:22:21 2016 +0000
@@ -45,6 +45,13 @@
 
 cmdtable = {}
 command = cmdutil.command(cmdtable)
+colortable = {'topic.stack.index': 'yellow',
+              'topic.stack.state.clean': 'dim',
+              'topic.stack.index.current': 'cyan', # random pick
+              'topic.stack.state.current': 'cyan bold', # random pick
+              'topic.stack.desc.current': 'cyan', # random pick
+              'topic.stack.state.unstable': 'red',
+             }
 
 testedwith = '3.7'