From d0e954bcb8b74899947aa77e9bf3050c200a385e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20St=C3=B6lzle?= Date: Mon, 7 Aug 2017 12:04:32 +0200 Subject: [PATCH 1/3] Add snazzy theme --- index.js | 1 + scheme/snazzy.js | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 scheme/snazzy.js diff --git a/index.js b/index.js index 407f9ac..c6bc1ab 100644 --- a/index.js +++ b/index.js @@ -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'), diff --git a/scheme/snazzy.js b/scheme/snazzy.js new file mode 100644 index 0000000..2877977 --- /dev/null +++ b/scheme/snazzy.js @@ -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', +}; From 1d94727f8e50e4afc80308f9c8720cb99d596baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20St=C3=B6lzle?= Date: Mon, 7 Aug 2017 12:10:48 +0200 Subject: [PATCH 2/3] Add theme to README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e8f443..b230f82 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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) From 6246913b52c70d057fcb0510372030404837c4f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20St=C3=B6lzle?= Date: Mon, 7 Aug 2017 12:11:16 +0200 Subject: [PATCH 3/3] Add theme to keywords --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index a193d6a..e9fc828 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "one-light", "predawn", "seti", + "snazzy", "solarized", "solarized-dark", "solarized-light",