-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make secondary text color a parameter instead of messing with alpha. …
…Add theme examples
- Loading branch information
Showing
14 changed files
with
234 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# Theme Gallery | ||
rt-shell is customizable in a number of ways. On this page you can see a variety of | ||
themes created using the available customization options. | ||
|
||
Come up with your own great theme, and want it featured here? Get in touch on [Twitter](https://twitter.com/daikonsoftware)! | ||
|
||
<table> | ||
<tr> | ||
<td> | ||
<b>rt-shell-dark</b><br> | ||
<img src="images/theme-rtshell-dark.png" width="500" alt="rt-shell-dark theme" /><br><br> | ||
The default rt-shell theme<br> | ||
<pre><code>obj_shell.consoleAlpha = 0.9; | ||
obj_shell.consoleColor = c_black; | ||
obj_shell.fontColor = make_color_rgb(255, 242, 245); | ||
obj_shell.fontColorDark = make_color_rgb(140, 118, 123); | ||
obj_shell.promptColor = make_color_rgb(237, 0, 54); | ||
obj_shell.prompt = "$";</code></pre><br> | ||
<td> | ||
<b>rt-shell-light</b><br> | ||
<img src="images/theme-rtshell-light.png" width="500" alt="rt-shell-light theme" /><br><br> | ||
A light version of the default rt-shell theme<br> | ||
<pre><code>obj_shell.consoleAlpha = 0.9; | ||
obj_shell.consoleColor = make_color_rgb(235, 235, 235); | ||
obj_shell.fontColor = make_color_rgb(40, 40, 45); | ||
obj_shell.fontColorDark = make_color_rgb(120, 120, 128); | ||
obj_shell.promptColor = make_color_rgb(29, 29, 196); | ||
obj_shell.prompt = "$";</code></pre><br> | ||
<tr> | ||
<td> | ||
<b>ocean-blue</b><br> | ||
<img src="images/theme-ocean-blue.png" width="500" alt="ocean-blue theme" /><br><br> | ||
A cobalt gray and ocean blue theme<br> | ||
<pre><code>obj_shell.consoleAlpha = 1; | ||
obj_shell.consoleColor = make_color_rgb(29, 31, 33); | ||
obj_shell.fontColor = make_color_rgb(197, 200, 198); | ||
obj_shell.fontColorDark = make_color_rgb(116, 127, 140); | ||
obj_shell.promptColor = make_color_rgb(57, 113, 237); | ||
obj_shell.prompt = "%";</code></pre><br> | ||
<td> | ||
<b>dracula</b><br> | ||
<img src="images/theme-dracula.png" width="500" alt="dracula theme" /><br><br> | ||
The popular <a href="https://draculatheme.com/">Dracula theme</a>!<br> | ||
<pre><code>obj_shell.consoleAlpha = 1; | ||
obj_shell.consoleColor = make_color_rgb(40, 42, 54); | ||
obj_shell.fontColor = make_color_rgb(248, 248, 242); | ||
obj_shell.fontColorDark = make_color_rgb(98, 114, 164); | ||
obj_shell.promptColor = make_color_rgb(80, 250, 123); | ||
obj_shell.prompt = "->";</code></pre><br> | ||
<tr> | ||
<td> | ||
<b>solarized-dark</b><br> | ||
<img src="images/theme-solarized-dark.png" width="500" alt="solarized-dark theme" /><br><br> | ||
The popular <a href="https://ethanschoonover.com/solarized/">Solarized Dark theme</a>!<br> | ||
<pre><code>obj_shell.consoleAlpha = 1; | ||
obj_shell.consoleColor = make_color_rgb(0, 43, 54); | ||
obj_shell.fontColor = make_color_rgb(131, 148, 150); | ||
obj_shell.fontColorDark = make_color_rgb(88, 110, 117); | ||
obj_shell.promptColor = make_color_rgb(42, 161, 152); | ||
obj_shell.prompt = "~";</code></pre><br> | ||
<td> | ||
<b>solarized-light</b><br> | ||
<img src="images/theme-solarized-light.png" width="500" alt="solarized-light theme" /><br><br> | ||
The popular <a href="https://ethanschoonover.com/solarized/">Solarized Light theme</a>!<br> | ||
<pre><code>obj_shell.consoleAlpha = 1; | ||
obj_shell.consoleColor = make_color_rgb(253, 246, 227); | ||
obj_shell.fontColor = make_color_rgb(101, 123, 131); | ||
obj_shell.fontColorDark = make_color_rgb(147, 161, 161); | ||
obj_shell.promptColor = make_color_rgb(42, 161, 152); | ||
obj_shell.prompt = "~";</code></pre><br> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.