Skip to content

Commit

Permalink
[GHI-#22] Implement HAML language styles
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Sep 18, 2016
1 parent 6ce40f2 commit 6d5b22a
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 @@ -40,6 +40,7 @@ LESSCSS
@import "styles/languages/css";
@import "styles/languages/gfm";
@import "styles/languages/go";
@import "styles/languages/haml";
@import "styles/languages/haskell";
@import "styles/languages/java";
@import "styles/languages/javascript";
Expand Down
44 changes: 44 additions & 0 deletions styles/languages/haml.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
title Language HAML +
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-haml (https://atom.io/packages/language-haml)
[References]
HAML
(http://haml.info)
*/
.text.haml {
.meta {
&.prolog {
color: @syntax-color-preprocessor;
}

&.section.object {
color: @syntax-color-class;
}
}

.punctuation.definition {
&.prolog {
color: @syntax-color-keyword;
}

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

.variable.other.instance {
color: @syntax-color-variable;
font-style: italic;
}
}

0 comments on commit 6d5b22a

Please sign in to comment.