merge py3 support
[rainbowstream.git] / rainbowstream / colorset / default.json
1 {
2 // 'search': max search record
3 "SEARCH_MAX_RECORD" : 5,
4 // 'home': default number of home's tweets
5 "HOME_TWEET_NUM" : 5,
6 // 'allrt': default number of retweets
7 "RETWEETS_SHOW_NUM" : 5,
8 // 'inbox','sent': default number of direct message
9 "MESSAGES_DISPLAY" : 5,
10 // 'trend': max trending topics
11 "TREND_MAX" : 10,
12 // List home timeline max
13 "LIST_MAX" : 5,
14 // 'switch': Filter and Ignore list ex: ['@fat','@mdo']
15 "ONLY_LIST" : [],
16 "IGNORE_LIST" : [],
17 // Autocomplete history file name
18 "HISTORY_FILENAME" : "completer.hist",
19 // Image config
20 "IMAGE_SHIFT" : 10,
21 "IMAGE_MAX_HEIGHT" : 40,
22 // Stream config
23 "USER_DOMAIN" : "userstream.twitter.com",
24 "PUBLIC_DOMAIN" : "stream.twitter.com",
25 "SITE_DOMAIN" : "sitestream.twitter.com",
26
27 /* Color config
28 There are 16 basic colors supported :
29 * default
30 * black
31 * red
32 * green
33 * yellow
34 * blue
35 * magenta
36 * cyan
37 * grey
38 * light_red
39 * light_green
40 * light_yellow
41 * light_blue
42 * light_magenta
43 * light_cyan
44 * white
45 and 256 colors from term_0 to term_255
46 Color code can be reference at
47 http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html
48 */
49
50 "DECORATED_NAME" : "grey",
51 "CYCLE_COLOR" :["light_red","light_green","light_yellow","light_blue","light_magenta","light_cyan"],
52 "TWEET" : {
53 "nick" : "grey",
54 "clock" : "grey",
55 "id" : "grey",
56 "favorited" : "light_green",
57 "rt" : "grey",
58 "link" : "light_cyan",
59 "keyword" : "on_light_yellow"
60 },
61
62 "MESSAGE" : {
63 "sender" : "grey",
64 "recipient" : "grey",
65 "to" : "light_magenta",
66 "clock" : "grey",
67 "id" : "grey"
68 },
69
70 "PROFILE" : {
71 "statuses_count" : "light_green",
72 "friends_count" : "light_green",
73 "followers_count" : "light_green",
74 "nick" : "grey",
75 "profile_image_url" : "light_cyan",
76 "description" : "light_yellow",
77 "location" : "light_magenta",
78 "url" : "light_cyan",
79 "clock" : "white"
80 },
81
82 "TREND" : {
83 "url": "light_cyan"
84 },
85
86 "CAL" : {
87 "days": "grey",
88 "today": "on_grey"
89 },
90
91 "GROUP" : {
92 "name": "grey",
93 "member": "light_green",
94 "subscriber": "light_green",
95 "mode": "grey",
96 "description": "light_yellow",
97 "clock": "grey"
98 }
99 }