X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=theme.md;h=8e2b2bb065bdd34f6e0644730f054204703aaf26;hp=c4cb0feee147d9c7cd5dab8ca4dae53c29eed725;hb=422dd3858dacc83de5e9d053140341b62a44012b;hpb=0c989606727bac9fa83722f27acd5c48d420a284 diff --git a/theme.md b/theme.md index c4cb0fe..8e2b2bb 100644 --- a/theme.md +++ b/theme.md @@ -5,45 +5,25 @@ ![Monokai](./screenshot/themes/Monokai.png) #### Solarized ![Solarized](./screenshot/themes/Solarized.png) +#### Tomorrow Night +![Solarized](./screenshot/themes/TomorrowNight.png) +#### Larapaste +![Solarized](./screenshot/themes/larapaste.png) -## Customize: -You are free to create your own themes. - +## Customization Create a file `~/.rainbow_config.json` and follow next instruction. -Examples are available in -[Monokai theme](https://github.com/DTVD/rainbowstream/blob/master/rainbowstream/colorset/monokai.json) -or -[Solarized theme](https://github.com/DTVD/rainbowstream/blob/master/rainbowstream/colorset/solarized.json) +Examples are available in +[Themes folder](https://github.com/DTVD/rainbowstream/blob/master/rainbowstream/colorset) ### Custom config - * Config file should be excatly named `.rainbow_config.json` and placed at home directory. - * Config file's content should follow `Json` format. - * Comment as `//` or `/*...*/` is accepted. + * Config file's name should be exactly `.rainbow_config.json` and placed at home directory. + * Config file's content should follow json format. + * Comments as `//` or `/*...*/` are allowed. * Here is an example ```json - /* Color config - There are 16 basic colors supported : - * default - * black - * red - * green - * yellow - * blue - * magenta - * cyan - * grey - * light_red - * light_green - * light_yellow - * light_blue - * light_magenta - * light_cyan - * white - and 256 terminal's colors from term_0 to term_255 - */ - +{ "DECORATED_NAME" : "term_198", "CYCLE_COLOR" :["term_198","term_57","term_166","term_50","term_179","term_74","term_112"], "TWEET" : { @@ -78,6 +58,11 @@ or "TREND" : { "url": "term_74" + }, + + "CAL" : { + "days": "term_57", + "today": "on_light_blue" } } ``` @@ -103,27 +88,45 @@ There are 16 basic colors: * white These colors will be enough for almost terminals. - -But if your terminals can support 256 colors (check your `$XTERM` variable!), -you can even use `term_0` to `term_255` as sample above. - -Color reference can be found at -[bash color](http://misc.flogisoft.com/bash/tip_colors_and_formatting) or -[256 xterm](http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html) +But if your terminal can support 256 colors (check your `$TERM` variable!), +you can even use `term_0` to `term_255` as the example above. + +There are also background highlight colors like: + * on_default + * on_black + * on_red + * on_green + * on_yellow + * on_blue + * on_magenta + * on_cyan + * on_grey + * on_light_red + * on_light_green + * on_light_yellow + * on_light_blue + * on_light_magenta + * on_light_cyan + * on_white + + +Color reference can be found at +[bash colors](http://misc.flogisoft.com/bash/tip_colors_and_formatting) or +[256 xterm colors](http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html). ### Available options * `DECORATED_NAME`: color of your Twitter's __username__ which is placed at every line's begin. -* `CYCLE_COLOR`: list of colors from which Twitter __real name__ 's color is selected. - * Color selection is cycle through this list but with a _memoization_. +* `CYCLE_COLOR`: list of colors from which Twitter __real name__ 's color is selected. + * Color selection is cycle through this list but with _memoization_. * It's means that same names will appear in same colors. -* `TWEET`: colors of various part in a tweet's ouput. +* `TWEET`: colors of parts in a tweet's ouput. * `nick` : color for Twitter __username__. * `clock`: color for time of tweet. - * `id`: color for Tweet's id + * `id`: color for tweet's id * `favorite`: color for the star symbol when a tweet is favorited by you * `rt`: color for `RT` word in tweet's content. * `link`: color for an url - * `keyword`: color for highlighted keyword (in tweets search) + * `keyword`: color for highlighted keyword (in tweets search) * `MESSAGE`: colors of parts in message's output. * `sender`: color for sender's __username__. * `recipient`: color for recipient's __username__. @@ -141,5 +144,18 @@ Color reference can be found at * `url`: color for url. * `clock`: color for joined time. * `TREND`: colors for trend's output: - * `url`: color for url. - + * `url`: color for trend's url. +* `CAL`: colors for calendar's output: + * `days`: color for days in current month + * `today`: color for today. + +### Theme usage +While entered Rainbow Stream: +* `theme` and hit ENTER to see which is available. +* `theme` + TAB twice will show themes list instantly. +* `theme monokai` will apply `monokai` theme immediately. You can use TAB key for theme's name autocompletion. + +### Theme contribution +I appreciate any contribution for themes for this app. +Please add a file to [themes folder](https://github.com/DTVD/rainbowstream/tree/master/rainbowstream/colorset) +(json format!) and create a [pull request](https://github.com/DTVD/rainbowstream/compare/) with a screenshot.