bumped version
[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"
271ea6a1
O
59 },
60
61 "CAL" : {
62 "days": "term_57",
63 "today": "on_light_blue"
53c6dfc7
O
64 }
65}
66```
67
68### Available Colors
69
70There are 16 basic colors:
71 * default
72 * black
73 * red
74 * green
75 * yellow
76 * blue
77 * magenta
78 * cyan
79 * grey
80 * light_red
81 * light_green
82 * light_yellow
83 * light_blue
84 * light_magenta
85 * light_cyan
86 * white
87
88These colors will be enough for almost terminals.
831d3164 89But if your terminal can support 256 colors (check your `$TERM` variable!),
759180b0 90you can even use `term_0` to `term_255` as the example above.
53c6dfc7 91
271ea6a1
O
92There are also background highlight colors like:
93 * on_default
94 * on_black
95 * on_red
96 * on_green
97 * on_yellow
98 * on_blue
99 * on_magenta
100 * on_cyan
101 * on_grey
102 * on_light_red
103 * on_light_green
104 * on_light_yellow
105 * on_light_blue
106 * on_light_magenta
107 * on_light_cyan
108 * on_white
109
110
831d3164
O
111Color reference can be found at
112[bash colors](http://misc.flogisoft.com/bash/tip_colors_and_formatting) or
be0fa7c7 113[256 xterm colors](http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html).
53c6dfc7
O
114
115### Available options
0c989606 116* `DECORATED_NAME`: color of your Twitter's __username__ which is placed at every line's begin.
831d3164
O
117* `CYCLE_COLOR`: list of colors from which Twitter __real name__ 's color is selected.
118 * Color selection is cycle through this list but with _memoization_.
0c989606 119 * It's means that same names will appear in same colors.
d4dcaeb7 120* `TWEET`: colors of parts in a tweet's ouput.
0c989606
O
121 * `nick` : color for Twitter __username__.
122 * `clock`: color for time of tweet.
123 * `id`: color for Tweet's id
124 * `favorite`: color for the star symbol when a tweet is favorited by you
125 * `rt`: color for `RT` word in tweet's content.
126 * `link`: color for an url
831d3164 127 * `keyword`: color for highlighted keyword (in tweets search)
0c989606
O
128* `MESSAGE`: colors of parts in message's output.
129 * `sender`: color for sender's __username__.
130 * `recipient`: color for recipient's __username__.
131 * `to`: color for the `>>>` symbol.
132 * `clock`: color for time of message.
133 * `id`: color for message's id
134* `PROFILE`: colors for parts in profile's ouput.
135 * `statuses_count`: color for statuses count.
136 * `friends_count`: color for friends count.
137 * `followers_count`: color for followers count.
138 * `nick`: color for Twitter __username__.
139 * `profile_image_url`: color for profile image url.
140 * `description`: color for description.
141 * `location`: color for location.
142 * `url`: color for url.
143 * `clock`: color for joined time.
144* `TREND`: colors for trend's output:
d4dcaeb7 145 * `url`: color for trend's url.
271ea6a1
O
146* `CAL`: colors for calendar's output:
147 * `days`: color for days in current month
148 * `today`: color for today.
b84845b9 149
8cffb56b
O
150### Theme usage
151While entered Rainbow Stream:
152* `theme` and hit ENTER to see which is available.
153* `theme` + TAB twice will show themes list instantly.
154* `theme monokai` will apply `monokai` theme immediately. You can use TAB key for theme's name autocompletion.
155
156### Theme contribution
0af9ed49 157I appreciate any contribution for themes for this app.
8cffb56b
O
158Please add a file to [themes folder](https://github.com/DTVD/rainbowstream/tree/master/rainbowstream/colorset)
159(json format!) and create a [pull request](https://github.com/DTVD/rainbowstream/compare/) with a screenshot.