Skip to content

Commit 4df790c

Browse files
committed
Initialize
0 parents  commit 4df790c

File tree

5 files changed

+115
-0
lines changed

5 files changed

+115
-0
lines changed

index.js

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
'use strict'
2+
3+
const foregroundColor = '#f8f8f2'
4+
const backgroundColor = '#282a36'
5+
const black = backgroundColor
6+
const red = '#ff5555'
7+
const green = '#50fa7b'
8+
const yellow = '#f1fa8c'
9+
const blue = '#6272a4'
10+
const magenta = '#ff79c6'
11+
const cyan = '#8be9fd'
12+
const gray = '#666666'
13+
const brightBlack = backgroundColor
14+
const brightWhite = '#ffffff'
15+
16+
exports.decorateConfig = config => {
17+
return Object.assign({}, config, {
18+
backgroundColor,
19+
foregroundColor,
20+
borderColor: '#44475a',
21+
cursorColor: '#999999',
22+
colors: [
23+
black,
24+
red,
25+
green,
26+
yellow,
27+
blue,
28+
magenta,
29+
cyan,
30+
gray,
31+
32+
// bright
33+
brightBlack,
34+
red,
35+
green,
36+
yellow,
37+
blue,
38+
magenta,
39+
cyan,
40+
brightWhite
41+
],
42+
css: `
43+
${config.css || ''}
44+
.tabs. .tabs_list .tabs_text {
45+
color: #6272a4;
46+
}
47+
48+
.tab_active:before {
49+
border-color: rgba(255, 106, 193, 0.25);
50+
}
51+
`
52+
})
53+
}

license

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Dang Van Thanh <[email protected]> (dangthanh.org)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "hyperterm-dracula",
3+
"version": "0.1.0",
4+
"description": "Dark dracule HyperTerm theme",
5+
"license": "MIT",
6+
"repository": "dangvanthanh/hyperterm-dark-dracula",
7+
"author": {
8+
"name": "Dang Van Thanh",
9+
"email": "[email protected]",
10+
"url": "dangthanh.org"
11+
},
12+
"files": [
13+
"index.js"
14+
],
15+
"keywords": [
16+
"hyperterm",
17+
"hyperterm-theme",
18+
"hyperterm-dark-dracula"
19+
]
20+
}

readme.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# hyperterm-dracula
2+
3+
[![Build Status](https://travis-ci.org/dangvanthanh/hyperterm-dark-dracula.svg?branch=master)](https://travis-ci.org/dangvanthanh/hyperterm-dracula)
4+
5+
> Dark dracula [HyperTerm](https://hyperterm.org/) theme
6+
7+
![](screenshot.png)
8+
9+
## Install
10+
11+
Add `hyperterm-dracula` to the plugins list in your `~/.hyperterm.js` config file.
12+
13+
```
14+
plugins: [
15+
"hyperterm-dark-dracula"
16+
],
17+
```
18+
19+
## License
20+
21+
MIT © [Dang Van Thanh](http://dangthanh.org)

screenshot.png

90 KB
Loading

0 commit comments

Comments
 (0)