add calendar and calculator support in theme
[rainbowstream.git] / theme.md
CommitLineData
53c6dfc7 1## Available themes
b84845b9
O
2#### Default
3![Default](./screenshot/themes/Default.png)
4#### Monokai
5![Monokai](./screenshot/themes/Monokai.png)
6#### Solarized
7![Solarized](./screenshot/themes/Solarized.png)
8
0af9ed49 9## Customization
53c6dfc7 10Create a file `~/.rainbow_config.json` and follow next instruction.
0c989606 11
831d3164 12Examples are available in
53c6dfc7 13[Monokai theme](https://github.com/DTVD/rainbowstream/blob/master/rainbowstream/colorset/monokai.json)
b84845b9 14or
be0fa7c7 15[Solarized theme](https://github.com/DTVD/rainbowstream/blob/master/rainbowstream/colorset/solarized.json).
53c6dfc7
O
16
17### Custom config
759180b0 18 * Config file's name should be exactly `.rainbow_config.json` and placed at home directory.
be0fa7c7 19 * Config file's content should follow json format.
d4dcaeb7 20 * Comments as `//` or `/*...*/` are allowed.
53c6dfc7
O
21 * Here is an example
22
23```json
bd97b07c 24{
53c6dfc7
O
25 "DECORATED_NAME" : "term_198",
26 "CYCLE_COLOR" :["term_198","term_57","term_166","term_50","term_179","term_74","term_112"],
27 "TWEET" : {
28 "nick" : "term_112",
29 "clock" : "term_57",
30 "id" : "term_166",
31 "favourite" : "term_50",
32 "rt" : "term_179",
33 "link" : "term_74",
34 "keyword" : "on_light_green"
35 },
36
37 "MESSAGE" : {
38 "sender" : "term_112",
39 "recipient" : "term_112",
40 "to" : "term_50",
41 "clock" : "term_57",
42 "id" : "term_166"
43 },
44
45 "PROFILE" : {
46 "statuses_count" : "term_112",
47 "friends_count" : "term_198",
48 "followers_count" : "term_57",
49 "nick" : "term_198",
50 "profile_image_url" : "term_74",
51 "description" : "term_166",
52 "location" : "term_112",
53 "url" : "term_74",
54 "clock" : "term_57"
55 },
56
57 "TREND" : {
58 "url": "term_74"
59 }
60}
61```
62
63### Available Colors
64
65There are 16 basic colors:
66 * default
67 * black
68 * red
69 * green
70 * yellow
71 * blue
72 * magenta
73 * cyan
74 * grey
75 * light_red
76 * light_green
77 * light_yellow
78 * light_blue
79 * light_magenta
80 * light_cyan
81 * white
82
83These colors will be enough for almost terminals.
831d3164 84But if your terminal can support 256 colors (check your `$TERM` variable!),
759180b0 85you can even use `term_0` to `term_255` as the example above.
53c6dfc7 86
831d3164
O
87Color reference can be found at
88[bash colors](http://misc.flogisoft.com/bash/tip_colors_and_formatting) or
be0fa7c7 89[256 xterm colors](http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html).
53c6dfc7
O
90
91### Available options
0c989606 92* `DECORATED_NAME`: color of your Twitter's __username__ which is placed at every line's begin.
831d3164
O
93* `CYCLE_COLOR`: list of colors from which Twitter __real name__ 's color is selected.
94 * Color selection is cycle through this list but with _memoization_.
0c989606 95 * It's means that same names will appear in same colors.
d4dcaeb7 96* `TWEET`: colors of parts in a tweet's ouput.
0c989606
O
97 * `nick` : color for Twitter __username__.
98 * `clock`: color for time of tweet.
99 * `id`: color for Tweet's id
100 * `favorite`: color for the star symbol when a tweet is favorited by you
101 * `rt`: color for `RT` word in tweet's content.
102 * `link`: color for an url
831d3164 103 * `keyword`: color for highlighted keyword (in tweets search)
0c989606
O
104* `MESSAGE`: colors of parts in message's output.
105 * `sender`: color for sender's __username__.
106 * `recipient`: color for recipient's __username__.
107 * `to`: color for the `>>>` symbol.
108 * `clock`: color for time of message.
109 * `id`: color for message's id
110* `PROFILE`: colors for parts in profile's ouput.
111 * `statuses_count`: color for statuses count.
112 * `friends_count`: color for friends count.
113 * `followers_count`: color for followers count.
114 * `nick`: color for Twitter __username__.
115 * `profile_image_url`: color for profile image url.
116 * `description`: color for description.
117 * `location`: color for location.
118 * `url`: color for url.
119 * `clock`: color for joined time.
120* `TREND`: colors for trend's output:
d4dcaeb7 121 * `url`: color for trend's url.
b84845b9 122
8cffb56b
O
123### Theme usage
124While entered Rainbow Stream:
125* `theme` and hit ENTER to see which is available.
126* `theme` + TAB twice will show themes list instantly.
127* `theme monokai` will apply `monokai` theme immediately. You can use TAB key for theme's name autocompletion.
128
129### Theme contribution
0af9ed49 130I appreciate any contribution for themes for this app.
8cffb56b
O
131Please add a file to [themes folder](https://github.com/DTVD/rainbowstream/tree/master/rainbowstream/colorset)
132(json format!) and create a [pull request](https://github.com/DTVD/rainbowstream/compare/) with a screenshot.