forked from blinksh/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Carlos Cabanero
committed
Nov 1, 2016
0 parents
commit 5e855a2
Showing
5 changed files
with
94 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*~ |
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,27 @@ | ||
base03 = "#2C3E50"; | ||
base02 = "#34495E"; | ||
base01 = "#27AE60"; | ||
base00 = "#F39C12"; | ||
base0 = "#3C7DD1"; | ||
base1 = "#2980B9"; | ||
base2 = "#ECF0F1"; | ||
base3 = "#BDC3C7"; | ||
yellow = "#F1C40F"; | ||
orange = "#C0392B"; | ||
red = "#E74C3C"; | ||
magenta = "#9B59B6"; | ||
violet = "#8E44AD"; | ||
blue = "#3498DB"; | ||
cyan = "#1ABC9C"; | ||
green = "#2ECC71"; | ||
|
||
t.prefs_.set('color-palette-overrides', | ||
[ base02 , red , green , yellow, | ||
blue , magenta , cyan , base2, | ||
base03 , orange , base01 , base00, | ||
base0 , violet , base1 , base3 ]); | ||
|
||
t.prefs_.set('cursor-color', 'rgba(229, 190, 12, 0.5)'); | ||
t.prefs_.set('cursor-blink', false); | ||
t.prefs_.set('foreground-color', "#BDC3C7"); | ||
t.prefs_.set('background-color', "#1A242F"); |
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,26 @@ | ||
black = '#000000'; | ||
red = '#F25A00'; // red | ||
green = '#6AAF19'; // green | ||
yellow = '#9F9F8F'; // yellow | ||
blue = '#66D9EF'; // blue | ||
magenta = '#AE81FF'; // pink | ||
cyan = '#28C6E4'; // cyan | ||
white = '#ffffff'; // light gray | ||
lightBlack = '#C2E8FF'; // medium gray | ||
lightRed = '#FD971F'; // red | ||
lightGreen = '#529B2F'; // green | ||
lightYellow = '#9F9F8F'; // yellow | ||
lightBlue = '#66D9EF'; // blue | ||
lightMagenta= '#F92672'; // pink | ||
lightCyan = '#28C6E4'; // cyan | ||
lightWhite = '#E0E0E0'; // white | ||
|
||
t.prefs_.set('color-palette-overrides', | ||
[ black , red , green , yellow, | ||
blue , magenta , cyan , white, | ||
lightBlack , lightRed , lightGreen , lightYellow, | ||
lightBlue , lightMagenta , lightCyan , lightWhite ]); | ||
|
||
t.prefs_.set('cursor-color', 'rgba(0, 0, 0, 0.5)'); | ||
t.prefs_.set('foreground-color', '#000000'); | ||
t.prefs_.set('background-color', white); |
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,13 @@ | ||
# Blink Shell Themes | ||
|
||
With [Blink Shell](http://www.blink.sh) you can have your terminal, your way. We know how important it is for you to have your color scheme and the font that you feel comfortable looking at all day. And don't forget to send us your PR to share them with others too! | ||
|
||
[Blink Shell](http://www.blink.sh) uses [Chromium's HTerm](https://chromium.googlesource.com/apps/libapps/+/HEAD/hterm) under the hood. This means our themes are also compatible with [Chrome's Secure Shell](https://chrome.google.com/webstore/detail/secure-shell/pnhechapfaindjhompbnflcldabbghjo) | ||
|
||
To install them on Blink, just paste the URL of the JS theme under Appearance -> Themes -> New Theme. If you would like to learn how to create your own, [continue reading!](https://github.com/blinksh/blink/blob/raw/Resources/FontsAndThemes.md) | ||
|
||
Check also the [Fonts Gallery](https://github.com/blinksh/fonts) | ||
You can also find about Blink's official repository | ||
|
||
## Screenshots | ||
|
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,27 @@ | ||
base03 = "#001E27"; | ||
base02 = "#415257"; | ||
base01 = "#586e75"; | ||
base00 = "#657b83"; | ||
base0 = "#839496"; | ||
base1 = "#93a1a1"; | ||
base2 = "#eee8d5"; | ||
base3 = "#fdf6e3"; | ||
yellow = "#b58900"; | ||
orange = "#cb4b16"; | ||
red = "#dc322f"; | ||
magenta = "#d33682"; | ||
violet = "#6c71c4"; | ||
blue = "#268bd2"; | ||
cyan = "#2aa198"; | ||
green = "#859900"; | ||
|
||
t.prefs_.set('color-palette-overrides', | ||
[ base03 , red , green , yellow, | ||
blue , magenta , cyan , base2, | ||
base02 , orange , base01 , base00, | ||
base0 , violet , base1 , base3 ]); | ||
|
||
t.prefs_.set('cursor-color', 'rgba(255, 255, 255, 0.3)'); | ||
t.prefs_.set('cursor-blink', false); | ||
t.prefs_.set('foreground-color', base0); | ||
t.prefs_.set('background-color', base03); |