Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Commit

Permalink
Merge pull request #6 from stoe/snazzy
Browse files Browse the repository at this point in the history
Add snazzy theme
  • Loading branch information
jerrykal authored Aug 7, 2017
2 parents 70f89fe + 6246913 commit 32bfd9e
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ You can add the following scripts to your `.hyper.js`, if you like what you see.

> The default color scheme is `solarized-dark`.
Currently, we provide our user over **29** beautiful color schemes (click the name to see the screenshot):
Currently, we provide our user over **30** beautiful color schemes (click the name to see the screenshot):

* [80rave](assets/scheme/80rave.png)
* [apex](assets/scheme/apex.png)
Expand Down Expand Up @@ -370,6 +370,7 @@ You can contribute your own color scheme to this project, see the [CONTRIBUTING.
:zap: The `predawn` color scheme inspired by [**jamiewilson/predawn-hyperterm**](https://github.com/jamiewilson/predawn-hyperterm)
:zap: The `preline` selected tab flavor inspired by [**Kikobeats/hyper-flat**](https://github.com/kikobeats/hyper-flat)
:zap: The `seti` color scheme inspired by [**jesseweed/seti-syntax**](https://github.com/jesseweed/seti-syntax)
:zap: The `snazzy` color scheme contributed by [**@stoe**](https://github.com/stoe)
:zap: The `solarized` color scheme faimly inspired by [**Solarized - Ethan Schoonover**](http://ethanschoonover.com/solarized)
:zap: The `tomorrow` color scheme family inspired by [**chriskempson/tomorrow-theme**](https://github.com/chriskempson/tomorrow-theme)

Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const schemeIndex = {
'one-light': require('./scheme/one-light.js'),
'predawn': require('./scheme/predawn.js'),
'seti': require('./scheme/seti.js'),
'snazzy': require('./scheme/snazzy.js'),
'solarized-dark': require('./scheme/solarized-dark.js'),
'solarized-light': require('./scheme/solarized-light.js'),
'tomorrow': require('./scheme/tomorrow.js'),
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"one-light",
"predawn",
"seti",
"snazzy",
"solarized",
"solarized-dark",
"solarized-light",
Expand Down
35 changes: 35 additions & 0 deletions scheme/snazzy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
'use strict';

module.exports = {
colors: {
black: '#282a36',
red: '#ff5c57',
green: '#5af78e',
yellow: '#f3f99d',
blue: '#57c7ff',
magenta: '#ff6ac1',
cyan: '#9aedfe',
white: '#dee1db',
lightBlack: '#5C6370',
lightRed: '#ff5c57',
lightGreen: '#5af78e',
lightYellow: '#f3f99d',
lightBlue: '#57c7ff',
lightMagenta: '#ff6ac1',
lightCyan: '#9aedfe',
lightWhite: '#FFFFFF',
},

// Default
backgroundColor: '#282a36',
foregroundColor: '#dee1db',
cursorColor: '#ff9f43',
borderColor: '#32363E',

// Accent color
accentColor: '#ff9f43',

// Other
tabTitleColor: 'rgba(171, 178, 191, 0.2)',
selectedTabTitleColor: '#ff6ac1',
};

0 comments on commit 32bfd9e

Please sign in to comment.