fix serious bug in import HTMLParser in Python > 3.4
[rainbowstream.git] / rainbowstream / colorset / default.json
index 7d7aad7dab2f4298e6373ad2a755c8f209bc245d..134891d9f187429889262d24643f799aa8fd0d96 100644 (file)
@@ -1,29 +1,32 @@
 {
-    // 'search': max search record
-    "SEARCH_MAX_RECORD" : 5,
-    // 'home': default number of home's tweets
-    "HOME_TWEET_NUM" : 5,
-    // 'allrt': default number of retweets
-    "RETWEETS_SHOW_NUM" : 5,
-    // 'inbox','sent': default number of direct message
-    "MESSAGES_DISPLAY" : 5,
-    // 'trend': max trending topics
-    "TREND_MAX" : 10,
-    // 'switch': Filter and Ignore list ex: ['@fat','@mdo']
-    "ONLY_LIST" : [],
-    "IGNORE_LIST" : [],
-    // Autocomplete history file name
-    "HISTORY_FILENAME" : "completer.hist",
-    // Image config
-    "IMAGE_SHIFT" : "10",
-    "IMAGE_MAX_HEIGHT" : "40",
+    /* Color config
+    There are 16 basic colors supported :
+        * default
+        * black
+        * red
+        * green
+        * yellow
+        * blue
+        * magenta
+        * cyan
+        * grey
+        * light_red
+        * light_green
+        * light_yellow
+        * light_blue
+        * light_magenta
+        * light_cyan
+        * white
+    and 256 colors from term_0 to term_255
+     */
 
-    // Color config
+    "DECORATED_NAME" : "grey",
+    "CYCLE_COLOR" :["light_red","light_green","light_yellow","light_blue","light_magenta","light_cyan"],
     "TWEET" : {
         "nick"      : "grey",
         "clock"     : "grey",
         "id"        : "grey",
-        "favourite" : "light_green",
+        "favorited" : "light_green",
         "rt"        : "grey",
         "link"      : "light_cyan",
         "keyword"   : "on_light_yellow"
 
     "TREND" : {
         "url": "light_cyan"
+    },
+
+    "CAL" : {
+        "days": "grey",
+        "today": "on_grey"
+    },
+
+    "GROUP" : {
+        "name": "grey",
+        "member": "light_green",
+        "subscriber": "light_green",
+        "mode": "grey",
+        "description": "light_yellow",
+        "clock": "grey"
     }
-}
\ No newline at end of file
+}