File tree 4 files changed +69
-0
lines changed
4 files changed +69
-0
lines changed Original file line number Diff line number Diff line change
1
+ root = true
2
+
3
+ [* ]
4
+ indent_style = space
5
+ indent_size = 2
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ exports . decorateConfig = config => {
4
+ return Object . assign ( { } , config , {
5
+ backgroundColor : '#393939' ,
6
+ foregroundColor : '#e3e2e0' ,
7
+ borderColor : '#393939' ,
8
+ cursorColor : '#97979b' ,
9
+ colors : [
10
+ '#393939' ,
11
+ '#f66153' ,
12
+ '#a6e22e' ,
13
+ '#fd971f' ,
14
+ '#4ea1df' ,
15
+ '#808dd3' ,
16
+ '#82d2ec' ,
17
+ '#e3e2e0' ,
18
+
19
+ '#797979' ,
20
+ '#f66153' ,
21
+ '#a6e22e' ,
22
+ '#e6db74' ,
23
+ '#4ea1df' ,
24
+ '#808dd3' ,
25
+ '#82d2ec' ,
26
+ '#e3e2e0'
27
+ ] ,
28
+ css : `
29
+ ${ config . css || '' }
30
+ .tab_active:before {
31
+ border-color: #494949;
32
+ border-width: 2px;
33
+ }
34
+ `
35
+ } ) ;
36
+ } ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " hyperterm-snappy" ,
3
+ "version" : " 0.1.0" ,
4
+ "description" : " Snappy HyperTerm theme" ,
5
+ "license" : " MIT" ,
6
+ "repository" : " danvirsen/hyperterm-snappy" ,
7
+ "author" : {
8
+ "name" : " Dan Virsén" ,
9
+
10
+ },
11
+ "files" : [
12
+ " index.js"
13
+ ],
14
+ "keywords" : [
15
+ " hyperterm" ,
16
+ " hyperterm-theme"
17
+ ]
18
+ }
Original file line number Diff line number Diff line change
1
+ # Hyperterm Snappy
2
+
3
+ A theme plugin for [ HyperTerm] ( https://hyperterm.org ) inspired by the [ Snappy colour scheme by Dayle Rees] ( http://daylerees.github.io/ ) .
4
+
5
+ ## Install
6
+ Add ` hyperterm-snappy ` to the plugins list in your ` ~/.hyperterm.js ` config file.
You can’t perform that action at this time.
0 commit comments