Skip to content

Commit e2b6b1f

Browse files
author
Jeremy Seago
committed
adds hyperterm theme
1 parent 5d576a4 commit e2b6b1f

File tree

5 files changed

+68
-0
lines changed

5 files changed

+68
-0
lines changed

hyperterm/LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (c) 2016, Jeremy Seago
2+
3+
Permission to use, copy, modify, and/or distribute this software for any
4+
purpose with or without fee is hereby granted, provided that the above
5+
copyright notice and this permission notice appear in all copies.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

hyperterm/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# sourcerer-hyperterm
2+
Sourcerer theme for HyperTerm based on [Xero/Sourcerer](https://github.com/xero/sourcerer)
3+
4+
![colors](https://raw.githubusercontent.com/xero/sourcerer/master/termcolors.png) ![sample](samples/osxey.png)
5+

hyperterm/index.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
exports.decorateConfig = (config) => {
2+
return Object.assign({}, config, {
3+
cursorColor: 'rgba(211,211,211, 0.25)',
4+
foregroundColor: '#c2c2b0',
5+
backgroundColor: '#222222',
6+
borderColor: '#222222',
7+
borderColor: 'yellow',
8+
cursorColor: 'yellow',
9+
colors: {
10+
black: '#111111',
11+
red: '#aa4450',
12+
green: '#719611',
13+
yellow: '#cc8800',
14+
blue: '#6688aa',
15+
magenta: '#8f6f8f',
16+
cyan: '#528b8b',
17+
white: '#d3d3d3',
18+
lightBlack: '#181818',
19+
lightRed: '#ff6a6a',
20+
lightGreen: '#b1d631',
21+
lightYellow: '#ff9800',
22+
lightBlue: '#90b0d1',
23+
lightMagenta: '#8181a6',
24+
lightCyan: '#87ceeb',
25+
lightWhite: '#c1cdc1'
26+
},
27+
});
28+
}

hyperterm/package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "sourcerer-hyperterm",
3+
"version": "1.0.3",
4+
"description": "Sourcerer theme for HyperTerm based on Xero/Sourcerer https://github.com/xero/sourcerer",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git://github.com/xero/sourcerer.git"
12+
},
13+
"keywords": [
14+
"hyperterm"
15+
],
16+
"author": "Jeremy Seago",
17+
"license": "ISC",
18+
"bugs": {
19+
"url": "https://github.com/xero/sourcerer/issues"
20+
},
21+
"homepage": "https://github.com/xero/sourcerer/tree/master/hyperterm#readme"
22+
}

hyperterm/samples/osxey.png

11.6 KB
Loading

0 commit comments

Comments
 (0)