change theme base on config
[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 "CYCLE_COLOR" :["light_red","light_green","light_yellow","light_blue","light_magenta","light_cyan"],
49 "TWEET" : {
50 "nick" : "grey",
51 "clock" : "grey",
52 "id" : "grey",
53 "favourite" : "light_green",
54 "rt" : "grey",
55 "link" : "light_cyan",
56 "keyword" : "on_light_yellow"
57 },
58
59 "MESSAGE" : {
60 "sender" : "grey",
61 "recipient" : "grey",
62 "to" : "light_magenta",
63 "clock" : "grey",
64 "id" : "grey"
65 },
66
67 "PROFILE" : {
68 "statuses_count" : "light_green",
69 "friends_count" : "light_green",
70 "followers_count" : "light_green",
71 "nick" : "grey",
72 "profile_image_url" : "light_cyan",
73 "description" : "light_yellow",
74 "location" : "light_magenta",
75 "url" : "light_cyan",
76 "clock" : "white"
77 },
78
79 "TREND" : {
80 "url": "light_cyan"
81 }
82 }