Skip to content

Commit

Permalink
Merge branch 'feature/ghi-#12-json-language-support' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Sep 17, 2016
2 parents 6b8f87c + 26a522c commit 0fe803a
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.less
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ LESSCSS
@import "styles/languages/go";
@import "styles/languages/java";
@import "styles/languages/javascript";
@import "styles/languages/json";
@import "styles/languages/python";
@import "styles/languages/ruby";
44 changes: 44 additions & 0 deletions styles/languages/json.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
title Language JSON +
project nord-atom-syntax +
version +
repository https://github.com/arcticicestudio/nord-atom-syntax +
author Arctic Ice Studio +
email development@arcticicestudio.com +
copyright Copyright (C) 2016 +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
[Language Packages]
> language-json (https://atom.io/packages/language-json)
[References]
JSON
(http://www.json.org)
*/
.source.json {
.meta.structure.dictionary.json {
& > .string.quoted.json {
color: @syntax-color-attribute;

& > .punctuation.string {
color: @syntax-color-punctuation;
}
}
}

.meta.structure.dictionary.json,
.meta.structure.array.json {
& > .constant.language.json {
color: @syntax-color-keyword;
}

& > .value.json > .string.quoted.json {
color: @syntax-color-string;
}

& > .value.json > .string.quoted.json > .punctuation {
color: @syntax-color-punctuation;
}
}
}

0 comments on commit 0fe803a

Please sign in to comment.