diff --git a/index.less b/index.less index 7123535..33ebc16 100644 --- a/index.less +++ b/index.less @@ -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"; diff --git a/styles/languages/haml.less b/styles/languages/haml.less new file mode 100644 index 0000000..bd5b55b --- /dev/null +++ b/styles/languages/haml.less @@ -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; + } +}