-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHI-#1 Implement base syntax classes
- Loading branch information
1 parent
61f7909
commit 780374d
Showing
1 changed file
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
/* | ||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
title Base Language Syntax + | ||
project nord-brackets + | ||
repository https://github.com/arcticicestudio/nord-brackets + | ||
author Arctic Ice Studio + | ||
email development@arcticicestudio.com + | ||
copyright Copyright (C) 2017 + | ||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
*/ | ||
/*+----------+ | ||
+ Elements + | ||
+----------+*/ | ||
.cm-atom { | ||
color: @editor-syntax-color-keyword; | ||
} | ||
|
||
.cm-attribute { | ||
color: @editor-syntax-color-attribute; | ||
} | ||
|
||
.cm-bracket, | ||
.cm-hr { | ||
color: @editor-syntax-color-punctuation; | ||
} | ||
|
||
.cm-builtin { | ||
color: @editor-syntax-color-method; | ||
} | ||
|
||
.cm-comment { | ||
color: @editor-syntax-color-comment; | ||
} | ||
|
||
.cm-def { | ||
color: @editor-syntax-color-method; | ||
} | ||
|
||
.cm-error { | ||
color: @editor-syntax-color-illegal; | ||
} | ||
|
||
.cm-header { | ||
color: @editor-syntax-color-markup-heading; | ||
} | ||
|
||
.cm-keyword { | ||
color: @editor-syntax-color-keyword; | ||
} | ||
|
||
.cm-link:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.cm-meta { | ||
color: @editor-syntax-color-annotation; | ||
} | ||
|
||
.cm-minus { | ||
color: @editor-syntax-color-removed; | ||
} | ||
|
||
.cm-number { | ||
color: @editor-syntax-color-numeric; | ||
} | ||
|
||
.cm-operator { | ||
color: @editor-syntax-color-operator; | ||
} | ||
|
||
.cm-plus { | ||
color: @editor-syntax-color-added; | ||
} | ||
|
||
.cm-property { | ||
color: @editor-syntax-color-property; | ||
} | ||
|
||
.cm-qualifier { | ||
color: @editor-syntax-color-class; | ||
} | ||
|
||
.cm-rangeinfo { | ||
color: @editor-syntax-color-regex; | ||
} | ||
|
||
.cm-string, | ||
.cm-string-2, | ||
.cm-quote { | ||
color: @editor-syntax-color-string; | ||
} | ||
|
||
.cm-tag { | ||
color: @editor-syntax-color-tag; | ||
} | ||
|
||
.cm-variable, | ||
.cm-variable-2, | ||
.cm-variable-3 { | ||
color: @editor-syntax-color-variable; | ||
} | ||
|
||
/*+------------+ | ||
+ UX Support + | ||
+------------+*/ | ||
.cm-matchhighlight { | ||
border-bottom: 2px solid @editor-search-match-current-border-color; | ||
} |