remove class colors for numbers in CSS

This commit is contained in:
Vlad Zinculescu 2012-11-26 16:59:27 +01:00
commit bddb9cd01b

View file

@ -79,10 +79,10 @@ var CssHighlightRules = function() {
token : ["constant.numeric"],
regex : numRe
}, {
token : "constant.numeric.color.hex", // hex6 color
token : "constant.numeric", // hex6 color
regex : "#[a-f0-9]{6}"
}, {
token : "constant.numeric.color.hex", // hex3 color
token : "constant.numeric", // hex3 color
regex : "#[a-f0-9]{3}"
}, {
token : ["punctuation", "entity.other.attribute-name.pseudo-element.css"],