re-init cycle color
[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 // 'switch': Filter and Ignore list ex: ['@fat','@mdo']
13 "ONLY_LIST" : [],
14 "IGNORE_LIST" : [],
15 // Autocomplete history file name
16 "HISTORY_FILENAME" : "completer.hist",
17 // Image config
18 "IMAGE_SHIFT" : "10",
19 "IMAGE_MAX_HEIGHT" : "40",
20 // Stream config
21 "USER_DOMAIN" : "userstream.twitter.com",
22 "PUBLIC_DOMAIN" : "stream.twitter.com",
23 "SITE_DOMAIN" : "sitestream.twitter.com",
24
25 /* Color config
26 There are 16 basic colors supported :
27 * default
28 * black
29 * red
30 * green
31 * yellow
32 * blue
33 * magenta
34 * cyan
35 * grey
36 * light_red
37 * light_green
38 * light_yellow
39 * light_blue
40 * light_magenta
41 * light_cyan
42 * white
43 and 256 colors from RGB_0 to RGB_255
44 Color code can be reference at
45 http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html
46 */
47
48 "DECORATED_NAME" : "grey",
49 "CYCLE_COLOR" :["light_red","light_green","light_yellow","light_blue","light_magenta","light_cyan"],
50 "TWEET" : {
51 "nick" : "grey",
52 "clock" : "grey",
53 "id" : "grey",
54 "favourite" : "light_green",
55 "rt" : "grey",
56 "link" : "light_cyan",
57 "keyword" : "on_light_yellow"
58 },
59
60 "MESSAGE" : {
61 "sender" : "grey",
62 "recipient" : "grey",
63 "to" : "light_magenta",
64 "clock" : "grey",
65 "id" : "grey"
66 },
67
68 "PROFILE" : {
69 "statuses_count" : "light_green",
70 "friends_count" : "light_green",
71 "followers_count" : "light_green",
72 "nick" : "grey",
73 "profile_image_url" : "light_cyan",
74 "description" : "light_yellow",
75 "location" : "light_magenta",
76 "url" : "light_cyan",
77 "clock" : "white"
78 },
79
80 "TREND" : {
81 "url": "light_cyan"
82 }
83 }