Skip to content

Latest commit

 

History

History
106 lines (104 loc) · 4.42 KB

THEMING.md

File metadata and controls

106 lines (104 loc) · 4.42 KB

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!

rt-shell-dark
rt-shell-dark theme

The default rt-shell theme
obj_shell.consoleAlpha = 0.9;
obj_shell.consoleColor = c_black;
obj_shell.fontColor = make_color_rgb(255, 242, 245);
obj_shell.fontColorSecondary = make_color_rgb(140, 118, 123);
obj_shell.autocompleteBackgroundColor = obj_shell.consoleColor;
obj_shell.cornerRadius = 12;
obj_shell.anchorMargin = 4;
obj_shell.consolePaddingH = 6;
obj_shell.consolePaddingV = 4;
obj_shell.autocompletePadding = 2;
obj_shell.promptColor = make_color_rgb(237, 0, 54);
obj_shell.prompt = "$";

rt-shell-light
rt-shell-light theme

A light version of the default rt-shell theme
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.fontColorSecondary = make_color_rgb(120, 120, 128);
obj_shell.autocompleteBackgroundColor = obj_shell.consoleColor;
obj_shell.cornerRadius = 12;
obj_shell.anchorMargin = 4;
obj_shell.consolePaddingH = 6;
obj_shell.consolePaddingV = 4;
obj_shell.autocompletePadding = 2;
obj_shell.promptColor = make_color_rgb(29, 29, 196);
obj_shell.prompt = "$";

ocean-blue
ocean-blue theme

A cobalt gray and ocean blue theme
obj_shell.consoleAlpha = 1;
obj_shell.consoleColor = make_color_rgb(29, 31, 33);
obj_shell.fontColor = make_color_rgb(197, 200, 198);
obj_shell.fontColorSecondary = make_color_rgb(116, 127, 140);
obj_shell.autocompleteBackgroundColor = merge_color(obj_shell.consoleColor, c_black, 0.5);
obj_shell.cornerRadius = 0;
obj_shell.anchorMargin = 0;
obj_shell.consolePaddingH = 2;
obj_shell.consolePaddingV = 2;
obj_shell.autocompletePadding = 2;
obj_shell.promptColor = make_color_rgb(57, 113, 237);
obj_shell.prompt = "%";

dracula
dracula theme

The popular Dracula theme!
obj_shell.consoleAlpha = 1;
obj_shell.consoleColor = make_color_rgb(40, 42, 54);
obj_shell.fontColor = make_color_rgb(248, 248, 242);
obj_shell.fontColorSecondary = make_color_rgb(98, 114, 164);
obj_shell.autocompleteBackgroundColor = make_color_rgb(25, 26, 33);
obj_shell.cornerRadius = 8;
obj_shell.anchorMargin = 4;
obj_shell.consolePaddingH = 6;
obj_shell.consolePaddingV = 2;
obj_shell.autocompletePadding = 0;
obj_shell.promptColor = make_color_rgb(80, 250, 123);
obj_shell.prompt = "->";

solarized-light
solarized-light theme

The popular Solarized Light theme!
obj_shell.consoleAlpha = 1;
obj_shell.consoleColor = make_color_rgb(253, 246, 227);
obj_shell.fontColor = make_color_rgb(101, 123, 131);
obj_shell.fontColorSecondary = make_color_rgb(147, 161, 161);
obj_shell.autocompleteBackgroundColor = make_color_rgb(238, 232, 213);
obj_shell.cornerRadius = 2;
obj_shell.anchorMargin = 4;
obj_shell.consolePaddingH = 2;
obj_shell.consolePaddingV = 2;
obj_shell.autocompletePadding = 0;
obj_shell.promptColor = make_color_rgb(42, 161, 152);
obj_shell.prompt = "~";

solarized-dark
solarized-dark theme

The popular Solarized Dark theme!
obj_shell.consoleAlpha = 1;
obj_shell.consoleColor = make_color_rgb(0, 43, 54);
obj_shell.fontColor = make_color_rgb(131, 148, 150);
obj_shell.fontColorSecondary = make_color_rgb(88, 110, 117);
obj_shell.autocompleteBackgroundColor = make_color_rgb(0, 33, 43);
obj_shell.cornerRadius = 2;
obj_shell.anchorMargin = 4;
obj_shell.consolePaddingH = 2;
obj_shell.consolePaddingV = 2;
obj_shell.autocompletePadding = 0;
obj_shell.promptColor = make_color_rgb(42, 161, 152);
obj_shell.prompt = "~";