Skip to content

Commit

Permalink
better JS colors
Browse files Browse the repository at this point in the history
  • Loading branch information
denofevil committed Dec 22, 2015
1 parent c5622f9 commit 6135c9f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions colorSchemeTool.py
Expand Up @@ -398,12 +398,11 @@ def load_default_attributes(scheme_path):
sass_number = Attribute("SASS_NUMBER", default_number, scope='constant.numeric.css')

# JS
js_regexp = Attribute("JS.REGEXP", text, scope='string.regexp')
js_local_var = Attribute("JS.LOCAL_VARIABLE", text, foreground=(69, 131, 131))
js_parameter = Attribute("JS.PARAMETER", text, effect_type=1, scope='variable.parameter')
js_instance_member_func = Attribute("JS.INSTANCE_MEMBER_FUNCTION", text, foreground=(0x7a, 0x7a, 43))
js_attr = Attribute("JS.ATTRIBUTE", text, background=(0xf7, 0xe9, 0xe9))

js_regexp = Attribute("JS.REGEXP", default_string, scope='string.regexp')
js_local_var = Attribute("JS.LOCAL_VARIABLE", default_local_variable)
js_global_var = Attribute("JS.GLOBAL_VARIABLE", default_global_variable)
js_parameter = Attribute("JS.PARAMETER", default_parameter, effect_type=1, scope='variable.parameter')
js_instance_member_func = Attribute("JS.INSTANCE_MEMBER_FUNCTION", default_instance_method)

# YAML
yaml_comment = Attribute("YAML_COMMENT", default_line_comment, scope="comment.line.number-sign.yaml")
Expand Down

0 comments on commit 6135c9f

Please sign in to comment.