From a4f8b84ef43a3b0ebe90c4246d3e67a8a3e9d8bd Mon Sep 17 00:00:00 2001 From: Starfall Date: Fri, 27 May 2022 12:35:56 -0500 Subject: Initial commit --- README.md | 39 ++++++++++ gruvbox-dark-hard.theme | 8 ++ preview.html | 189 ++++++++++++++++++++++++++++++++++++++++++++++++ selenized-black.theme | 6 ++ selenized-dark.theme | 6 ++ tomorrows-stars.theme | 8 ++ 6 files changed, 256 insertions(+) create mode 100644 README.md create mode 100644 gruvbox-dark-hard.theme create mode 100644 preview.html create mode 100644 selenized-black.theme create mode 100644 selenized-dark.theme create mode 100644 tomorrows-stars.theme diff --git a/README.md b/README.md new file mode 100644 index 0000000..a62dc62 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +# Themes for xfce4-terminal + +## Install + +Per user: +`cp *.theme ~/.local/share/xfce4/terminal/colorschemes` +System-wide: +`cp *.theme /usr/share/xfce4/terminal/colorschemes` + +## Notes on theme creation + +ColorPalette is a semicolon-separated list of hex values (octothorpe included) in ANSI color order: + +black;red;green;yellow;blue;magenta;cyan;ltgrey;dkgrey;brred;brgreen;bryellow;brblue;brmagenta;brcyan;white + +If ForegroundColor and BackgroundColor aren't specified, the background will be the first color in ColorPalette and the foreground will be the last (typically this results in a dark theme). + +If TabActivityColor isn't set, the default of #A00 will be used. + +## Credits + +[Gruvbox by Pavel Pertsev](https://github.com/morhetz/gruvbox) (MIT license) +[Selenized by Jan Warchol](https://github.com/jan-warchol/selenized) (implied license to use without modifying accent colors) based on [Solarized by Ethan Schoonover](https://ethanschoonover.com/solarized) (MIT license) +Tomorrow's Stars by Starfall, lightly adapted from [Tomorrow by Chris Kempson](https://github.com/chriskempson/tomorrow-theme) (MIT license) + +## License + +DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE +Version 2, December 2004 + +Copyright (C) 2022 Starfall + +Everyone is permitted to copy and distribute verbatim or modified copies of this license document, +and changing it is allowed as long as the name is changed. + +DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, AND MODIFICATION + +0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/gruvbox-dark-hard.theme b/gruvbox-dark-hard.theme new file mode 100644 index 0000000..bc2de37 --- /dev/null +++ b/gruvbox-dark-hard.theme @@ -0,0 +1,8 @@ +[Scheme] +Name=Gruvbox (dark, high contrast) +ColorForeground=#ebdbb2 +ColorBackground=#1d2021 +TabActivityColor=#fe8019 +ColorPalette=#282828;#cc241d;#98971a;#d79921;#458588;#b16286;#689d6a;#a89984;#665c54;#fb4934;#b8bb26;#fabd2f;#83a598;#d3869b;#8ec07c;#ebdbb2 +ColorBold=#fbf1c7 +ColorBoldUseDefault=FALSE diff --git a/preview.html b/preview.html new file mode 100644 index 0000000..8bdf75e --- /dev/null +++ b/preview.html @@ -0,0 +1,189 @@ + + +Color Themes + + + + + + +
+Gruvbox Dark Hard
+ +██████████████████
+██████████████████
+ +██████████████████████
+By Pavel Pertsev +
+ + + +
+Selenized Dark
+ +████████████████
+████████████████
+By Jan Warchol, based on Solarized by Ethan Schoonover. +
+ + + +
+Selenized Black
+ +████████████████
+████████████████
+By Jan Warchol, based on Solarized by Ethan Schoonover. +
+ + + +
+Tomorrow's Stars
+ +██████████████████
+██████████████████
+ +██████████████████████
+Adapted from Chris Kempson's Tomorrow themes. +
diff --git a/selenized-black.theme b/selenized-black.theme new file mode 100644 index 0000000..2274b8f --- /dev/null +++ b/selenized-black.theme @@ -0,0 +1,6 @@ +[Scheme] +Name=Selenized (black) +ColorForeground=#b9b9b9 +ColorBackground=#181818 +ColorPalette=#252525;#ed4a46;#70b433;#dbb32d;#368aeb;#eb6eb7;#3fc5b7;#777777;#3b3b3b;#ff5e56;#83c746;#efc541;#4f9cfe;#ff81ca;#56d8c9;#dedede +TabActivityColor=#ed4a46 diff --git a/selenized-dark.theme b/selenized-dark.theme new file mode 100644 index 0000000..df9670d --- /dev/null +++ b/selenized-dark.theme @@ -0,0 +1,6 @@ +[Scheme] +Name=Selenized (dark) +ColorForeground=#adbcbc +ColorBackground=#103c48 +ColorPalette=#184956;#fa5750;#75b938;#dbb32d;#4695f7;#f275be;#41c7b9;#72898f;#2d5b69;#ff665c;#84c747;#ebc13d;#58a3ff;#ff84cd;#53d6c7;#cad8d9 +TabActivityColor=#75b938 diff --git a/tomorrows-stars.theme b/tomorrows-stars.theme new file mode 100644 index 0000000..bb51246 --- /dev/null +++ b/tomorrows-stars.theme @@ -0,0 +1,8 @@ +[Scheme] +Name=Tomorrow's Stars +ColorForeground=#c5c8c6 +ColorBackground=#1d1f21 +TabActivityColor=#f5871f +ColorPalette=#282a2e;#d54e53;#b9ca4a;#e7ba47;#7aa6da;#c397d8;#70c0b1;#969896;#373b41;#cc6666;#b5bd68;#f0c674;#81a2be;#b294bb;#8abeb7;#c5c8c6 +ColorBold=#d6d6d6 +ColorBoldUseDefault=FALSE -- cgit