Skip to content

Commit 6d341e6

Browse files
Merge branch 'release/0.1.0'
2 parents 4f6884e + dbb6972 commit 6d341e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+521
-11
lines changed

.npmignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
assets/**
2+
src/**
3+
.circleci/**
4+
.github/**
5+
.babelrc
6+
.editorconfig
7+
.gitignore
8+
.npmrc
9+
.stylelintrc.js
10+
.travis.yml
11+
gulpfile.babel.js
12+
package-lock.json

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact=true

CHANGELOG.md

Lines changed: 58 additions & 1 deletion

README.md

Lines changed: 63 additions & 3 deletions

assets/scrot-hero.png

300 KB

assets/scrot-lang-bash.png

173 KB

assets/scrot-lang-c.png

230 KB

assets/scrot-lang-cpp.png

184 KB

assets/scrot-lang-cs.png

90 KB

assets/scrot-lang-css.png

110 KB

assets/scrot-lang-diff.png

69.5 KB

assets/scrot-lang-go.png

64.6 KB

assets/scrot-lang-html.png

197 KB

assets/scrot-lang-java.png

282 KB

assets/scrot-lang-json.png

65.5 KB

assets/scrot-lang-php.png

446 KB

assets/scrot-lang-ruby.png

213 KB

assets/scrot-lang-rust.png

193 KB

assets/scrot-lang-scala.png

532 KB

assets/scrot-lang-sql.png

91.7 KB

assets/scrot-lang-swift.png

87.4 KB

assets/scrot-lang-yaml.png

87.4 KB

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nord-highlightjs",
33
"title": "Nord highlight.js",
4-
"version": "0.0.0",
4+
"version": "0.1.0",
55
"description": "An arctic, north-bluish clean and elegant highlight.js theme.",
66
"author": {
77
"name": "Arctic Ice Studio",
@@ -16,6 +16,7 @@
1616
"bugs": {
1717
"url": "https://github.com/arcticicestudio/nord-highlightjs/issues"
1818
},
19+
"license": "(Apache-2.0 AND CC-BY-SA-4.0)",
1920
"keywords": [
2021
"nord",
2122
"arctic",
@@ -26,7 +27,10 @@
2627
"highlight.js",
2728
"theme"
2829
],
29-
"license": "(Apache-2.0 AND CC-BY-SA-4.0)",
30+
"main": "./dist/nord.css",
31+
"scripts": {
32+
"prepublish": "gulp clean && gulp compile"
33+
},
3034
"devDependencies": {
3135
"babel-core": "6.26.0",
3236
"babel-preset-env": "1.6.0",

src/languages/abnf.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.abnf {
2+
.hljs-attribute {
3+
color: $nord8;
4+
}
5+
6+
.hljs-symbol {
7+
color: $nord13;
8+
}
9+
}

src/languages/apache.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.apache {
2+
.hljs-attribute {
3+
color: $nord8;
4+
}
5+
6+
.hljs-section {
7+
color: $nord9;
8+
}
9+
}

src/languages/arduino.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.arduino {
2+
.hljs-built_in {
3+
color: $nord8;
4+
}
5+
}

src/languages/aspectj.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.aspectj {
2+
.hljs-meta {
3+
color: $nord12;
4+
}
5+
6+
> .hljs-title {
7+
color: $nord8;
8+
}
9+
}

src/languages/bnf.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.bnf {
2+
.hljs-attribute {
3+
color: $nord7;
4+
}
5+
}

src/languages/clojure.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.clojure {
2+
.hljs-name {
3+
color: $nord8;
4+
}
5+
6+
.hljs-symbol {
7+
color: $nord13;
8+
}
9+
}

src/languages/coq.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.coq {
2+
.hljs-built_in {
3+
color: $nord8;
4+
}
5+
}

src/languages/cpp.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.cpp {
2+
.hljs-meta-string {
3+
color: $nord7;
4+
}
5+
}

src/languages/css.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.css {
2+
.hljs-built_in {
3+
color: $nord8;
4+
}
5+
6+
.hljs-keyword {
7+
color: $nord12;
8+
}
9+
}

src/languages/diff.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.diff {
2+
.hljs-meta {
3+
color: $nord7;
4+
}
5+
}

src/languages/ebnf.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.ebnf {
2+
.hljs-attribute {
3+
color: $nord7;
4+
}
5+
}

src/languages/glsl.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.glsl {
2+
.hljs-built_in {
3+
color: $nord8;
4+
}
5+
}

src/languages/groovy.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.groovy {
2+
.hljs-meta:not(:first-child) {
3+
color: $nord12;
4+
}
5+
}

src/languages/haxe.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.haxe {
2+
.hljs-meta {
3+
color: $nord12;
4+
}
5+
}

src/languages/java.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.java {
2+
.hljs-meta {
3+
color: $nord12;
4+
}
5+
}

src/languages/ldif.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.ldif {
2+
.hljs-attribute {
3+
color: $nord7;
4+
}
5+
}

src/languages/lisp.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.lisp {
2+
.hljs-name {
3+
color: $nord8;
4+
}
5+
}

src/languages/lua.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.lua {
2+
.hljs-built_in {
3+
color: $nord8;
4+
}
5+
}

src/languages/moonscript.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.moonscript {
2+
.hljs-built_in {
3+
color: $nord8;
4+
}
5+
}

src/languages/nginx.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.nginx {
2+
.hljs-attribute {
3+
color: $nord8;
4+
}
5+
6+
.hljs-section {
7+
color: $nord10;
8+
}
9+
}

src/languages/pf.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.pf {
2+
.hljs-built_in {
3+
color: $nord8;
4+
}
5+
}

src/languages/processing.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.processing {
2+
.hljs-built_in {
3+
color: $nord8;
4+
}
5+
}

src/languages/scss.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.scss {
2+
.hljs-keyword {
3+
color: $nord9;
4+
}
5+
}

src/languages/stylus.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.stylus {
2+
.hljs-keyword {
3+
color: $nord9;
4+
}
5+
}

src/languages/swift.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.swift {
2+
.hljs-meta {
3+
color: $nord12;
4+
}
5+
}

0 commit comments

Comments
 (0)