Skip to content
This repository has been archived by the owner on Sep 7, 2018. It is now read-only.

Commit

Permalink
Add Angular support
Browse files Browse the repository at this point in the history
Co-Authored-By: jakewtaylor <jaketaylor@gmlconsulting.co.uk>
  • Loading branch information
simurai and jakewtaylor committed May 28, 2018
1 parent 8c03b4c commit 9904418
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.less
Expand Up @@ -17,6 +17,7 @@
@import "styles/syntax/java.less";
@import "styles/syntax/javascript.less";
@import "styles/syntax/json.less";
@import "styles/syntax/ng.less";
@import "styles/syntax/ruby.less";
@import "styles/syntax/php.less";
@import "styles/syntax/python.less";
47 changes: 47 additions & 0 deletions styles/syntax/ng.less
@@ -0,0 +1,47 @@
.syntax--ng {
&.syntax--interpolation {
color: @hue-5;

&.syntax--begin, &.syntax--end {
color: @hue-2;
}

.syntax--function {
color: @hue-5;

&.syntax--begin, &.syntax--end {
color: @hue-2;
}
}

.syntax--bool {
color: @hue-6;
}

.syntax--bracket {
color: @mono-1;
}
}

&.syntax--pipe, &.syntax--operator {
color: @mono-1;
}

&.syntax--tag {
color: @hue-1;
}

&.syntax--attribute-with-value {
.syntax--attribute-name {
color: @hue-6-2;
}

.syntax--string {
color: @hue-3;

&.syntax--begin, &.syntax--end {
color: @mono-1;
}
}
}
}

0 comments on commit 9904418

Please sign in to comment.