micro/runtime/syntax/css.micro

11 lines
335 B
Text
Raw Normal View History

2016-03-21 16:16:02 +00:00
## Here is an example for css files.
##
syntax "CSS" "\.(css|scss)$"
color brightred "."
2016-03-25 20:41:36 +00:00
color brightyellow start="\{" end="\}"
color brightwhite start=":" end="[;^\{]"
2016-03-21 16:16:02 +00:00
color brightblue ":active|:focus|:hover|:link|:visited|:link|:after|:before|$"
2016-03-25 20:41:36 +00:00
color brightblue start="\/\*" end="\*\/"
2016-03-21 16:16:02 +00:00
color green ";|:|\{|\}"