Merge remote-tracking branch 'remotes/origin/master' into worker

Conflicts:
	lib/ace/css/editor.css
This commit is contained in:
nightwing 2012-10-01 23:29:11 +04:00
commit cbfb690a2e
170 changed files with 8597 additions and 4188 deletions

View file

@ -1,19 +1,11 @@
/* THIS THEME WAS AUTOGENERATED BY Theme.tmpl.css (UUID: %uuid%) */
.%cssClass% .ace_editor {
border: 2px solid rgb(159, 159, 159);
}
.%cssClass% .ace_editor.ace_focus {
border: 2px solid #327fbd;
}
.%cssClass% .ace_gutter {
background: #e8e8e8;
color: #333;
}
.%cssClass% .ace_print_margin {
.%cssClass% .ace_print-margin {
width: 1px;
background: %printMargin%;
}
@ -39,7 +31,7 @@
background: %selection%;
}
.%cssClass%.multiselect .ace_selection.start {
.%cssClass%.ace_multiselect .ace_selection.ace_start {
box-shadow: 0 0 3px 0px %background%;
border-radius: 2px;
}
@ -53,211 +45,24 @@
border: 1px solid %bracket%;
}
.%cssClass% .ace_marker-layer .ace_active_line {
.%cssClass% .ace_marker-layer .ace_active-line {
background: %active_line%;
}
.%cssClass% .ace_gutter_active_line {
.%cssClass% .ace_gutter-active-line {
background-color: %active_line%;
}
.%cssClass% .ace_marker-layer .ace_selected_word {
.%cssClass% .ace_marker-layer .ace_selected-word {
%selected_word_highlight%
}
.%cssClass% .ace_invisible {
%invisible%
}
.%cssClass% .ace_keyword, .%cssClass% .ace_meta {
%keyword%
}
.%cssClass% .ace_keyword.ace_operator {
%keyword.operator%
}
.%cssClass% .ace_constant, .%cssClass% .ace_constant.ace_other {
%constant%
}
.%cssClass% .ace_constant.ace_character {
%constant.character%
}
.%cssClass% .ace_constant.ace_character.ace_escape {
%constant.character.escape%
}
.%cssClass% .ace_constant.ace_language {
%constant.language%
}
.%cssClass% .ace_constant.ace_library {
%constant.library%
}
.%cssClass% .ace_constant.ace_numeric {
%constant.numeric%
}
.%cssClass% .ace_constant.ace_other {
%constant.other%
}
.%cssClass% .ace_invalid {
%invalid%
}
.%cssClass% .ace_invalid.ace_illegal {
%invalid.illegal%
}
.%cssClass% .ace_invalid.ace_deprecated {
%invalid.deprecated%
}
.%cssClass% .ace_support {
%support%
}
.%cssClass% .ace_support.ace_constant {
%support.constant%
}
.%cssClass% .ace_fold {
background-color: %fold%;
border-color: %foreground%;
}
.%cssClass% .ace_support.ace_function {
%support.function%
}
.%cssClass% .ace_support.ace_type {
%support.type%
}
.%cssClass% .ace_support.ace_class {
%support.class%
}
.%cssClass% .ace_support.ace_other {
%support.other%
}
.%cssClass% .ace_storage {
%storage%
}
.%cssClass% .ace_storage.ace_type, .%cssClass% .ace_support.ace_type{
%storage.type%
}
.%cssClass% .ace_variable {
%entity.name.function%
}
.%cssClass% .ace_variable.ace_parameter {
%variable.parameter%
}
.%cssClass% .ace_function.ace_buildin {
%function.buildin%
}
.%cssClass% .ace_string {
%string%
}
.%cssClass% .ace_string.ace_regexp {
%string.regexp%
}
.%cssClass% .ace_comment {
%comment%
}
.%cssClass% .ace_comment.ace_doc {
%comment.doc%
}
.%cssClass% .ace_comment.ace_doc.ace_tag {
%comment.doc.tag%
}
.%cssClass% .ace_variable {
%variable%
}
.%cssClass% .ace_variable.ace_language {
%variable.language%
}
.%cssClass% .ace_xml_pe {
%xml_pe%
}
.%cssClass% .ace_meta {
%meta%
}
.%cssClass% .ace_meta.ace_tag {
%meta.tag%
}
.%cssClass% .ace_meta.ace_tag.ace_input {
%ace.meta.tag.input%
}
.%cssClass% .ace_entity.ace_other.ace_attribute-name {
%entity.other.attribute-name%
}
.%cssClass% .ace_entity.ace_name {
%entity.name%
}
.%cssClass% .ace_entity.ace_name.ace_function {
%entity.name.function%
}
.%cssClass% .ace_markup.ace_underline {
text-decoration:underline;
}
.%cssClass% .ace_markup.ace_heading {
%markup.heading%
}
.%cssClass% .ace_markup.ace_heading.ace_1 {
%markup.heading.1%
}
.%cssClass% .ace_markup.ace_heading.ace_2 {
%markup.heading.2%
}
.%cssClass% .ace_markup.ace_heading.ace_3 {
%markup.heading.3%
}
.%cssClass% .ace_markup.ace_heading.ace_4 {
%markup.heading.4%
}
.%cssClass% .ace_markup.ace_heading.ace_5 {
%markup.heading.5%
}
.%cssClass% .ace_markup.ace_heading.ace_6 {
%markup.heading.6%
}
.%cssClass% .ace_markup.ace_list {
%markup.list%
}
.%cssClass% .ace_collab.ace_user1 {
%collab.user1%
}

View file

@ -2,6 +2,8 @@
"name": "ace-tools",
"version": "0.1.0",
"dependencies": {
"plist": ""
"plist": "",
"css-parse": "",
"css-stringify": ""
}
}

View file

@ -84,8 +84,12 @@ function checkForLookBehind(str) {
function removeXFlag(str) {
if (str.slice(0,4) == "(?x)") {
str = str.substr(4).replace(/\\[\s#]|\s+|(?:#[^\n]*)/g, function(s) {
return s[0] == "\\" ? s[1] : "";
str = str.replace(/\\.|\[([^\]\\]|\\.)*?\]|\s+|(?:#[^\n]*)/g, function(s) {
if (s[0] == "[")
return s;
if (s[0] == "\\")
return /[#\s]/.test(s[1]) ? s[1] : s;
return "";
});
}
return str;

View file

@ -1,4 +1,8 @@
var fs = require("fs");
var path = require("path");
var util = require("util");
var cssParse = require("css-parse");
var cssStringify = require("css-stringify");
var parseString = require("plist").parseString;
function parseTheme(themeXml, callback) {
@ -7,9 +11,12 @@ function parseTheme(themeXml, callback) {
});
}
var unsupportedScopes = { };
var supportedScopes = {
"keyword": "keyword",
"keyword.operator": "keyword.operator",
"keyword.other.unit": "keyword.other.unit",
"constant": "constant",
"constant.language": "constant.language",
@ -17,6 +24,7 @@ var supportedScopes = {
"constant.numeric": "constant.numeric",
"constant.character" : "constant.character",
"constant.character.escape" : "constant.character.escape",
"constant.character.entity": "constant.character.entity",
"constant.other" : "constant.other",
"support": "support",
@ -25,6 +33,7 @@ var supportedScopes = {
"support.function.firebug": "support.firebug",
"support.function.constant": "support.function.constant",
"support.constant": "support.constant",
"support.constant.property-value": "support.constant.property-value",
"support.class": "support.class",
"support.type": "support.type",
"support.other": "support.other",
@ -51,13 +60,14 @@ var supportedScopes = {
"variable.parameter": "variable.parameter",
"meta": "meta",
"meta.tag.sgml.doctype": "xml_pe",
"meta.tag.sgml.doctype": "xml-pe",
"meta.tag": "meta.tag",
"meta.tag.form": "meta.tag.form",
"meta.selector": "meta.selector",
"entity.other.attribute-name": "entity.other.attribute-name",
"entity.name.function": "entity.name.function",
"entity.name": "entity.name",
"entity.name.tag": "entity.name.tag",
"markup.heading": "markup.heading",
"markup.heading.1": "markup.heading.1",
@ -71,6 +81,12 @@ var supportedScopes = {
"collab.user1": "collab.user1"
};
var fallbackScopes = {
"keyword": "meta",
"support.type": "storage.type",
"variable": "entity.name.function"
};
function extractStyles(theme) {
var globalSettings = theme.settings[0].settings;
@ -94,18 +110,31 @@ function extractStyles(theme) {
if (!element.scope)
continue;
var scopes = element.scope.split(/\s*[|,]\s*/g);
for (var j=0; j<scopes.length; j++) {
for (var j = 0; j < scopes.length; j++) {
var scope = scopes[j];
if (supportedScopes[scope]) {
colors[supportedScopes[scope]] = parseStyles(element.settings);
} else {
//console.log(scope + " is not supported!");
var style = parseStyles(element.settings);
var aceScope = supportedScopes[scope];
if (aceScope) {
colors[aceScope] = style;
}
}
else if (style) {
unsupportedScopes[scope] = (unsupportedScopes[scope] || 0) + 1;
}
}
}
for (var i in fallbackScopes) {
if (!colors[i])
colors[i] = colors[fallbackScopes[i]];
}
if (!colors.fold)
colors.fold = ((colors["entity.name.function"] || colors.keyword).match(/\:([^;]+)/)||[])[1];
if (!colors.fold) {
var foldSource = colors["entity.name.function"] || colors.keyword;
if (foldSource) {
colors.fold = foldSource.match(/\:([^;]+)/)[1];
}
}
if (!colors.selected_word_highlight)
colors.selected_word_highlight = "border: 1px solid " + colors.selection + ";";
@ -177,8 +206,30 @@ function quoteString(str) {
var cssTemplate = fs.readFileSync(__dirname + "/Theme.tmpl.css", "utf8");
var jsTemplate = fs.readFileSync(__dirname + "/Theme.tmpl.js", "utf8");
function normalizeStylesheet(rules) {
for (var i = rules.length; i--; ) {
var s = JSON.stringify(rules[i].declarations);
for (var j = i; j --; ) {
if (s == JSON.stringify(rules[j].declarations)) {
console.log(rules[j].selectors, rules[i].selectors)
console.log(i, j)
rules[j].selectors = rules[i].selectors.concat(rules[j].selectors);
rules.splice(i, 1);
break;
}
}
}
for (var i = rules.length; i--; ) {
var s = rules[i].selectors.sort();
rules[i].selectors = s.filter(function(x, i) {
return x && x != s[i + 1];
});
}
return rules;
}
var themes = {
//"chrome": "Chrome",
//"chrome": "Chrome DevTools",
"clouds": "Clouds",
"clouds_midnight": "Clouds Midnight",
"cobalt": "Cobalt",
@ -196,14 +247,15 @@ var themes = {
"pastel_on_dark": "Pastels on Dark",
"solarized_dark": "Solarized-dark",
"solarized_light": "Solarized-light",
//"textmate": "Textmate",
//"textmate": "Textmate (Mac Classic)",
"tomorrow": "Tomorrow",
"tomorrow_night": "Tomorrow-Night",
"tomorrow_night_blue": "Tomorrow-Night-Blue",
"tomorrow_night_bright": "Tomorrow-Night-Bright",
"tomorrow_night_eighties": "Tomorrow-Night-Eighties",
"twilight": "Twilight",
"vibrant_ink": "Vibrant Ink"
"vibrant_ink": "Vibrant Ink",
//"xcode": "Xcode_default"
};
function convertTheme(name) {
@ -216,6 +268,13 @@ function convertTheme(name) {
styles.uuid = theme.uuid;
var css = fillTemplate(cssTemplate, styles);
css = css.replace(/[^\{\}]+{\s*}/g, "");
for (var i in supportedScopes) {
if (!styles[i])
continue;
css += "." + styles.cssClass + " " +
i.replace(/^|\./g, ".ace_") + "{" + styles[i] + "}";
}
var js = fillTemplate(jsTemplate, {
name: name,
@ -224,10 +283,89 @@ function convertTheme(name) {
isDark: styles.isDark
});
// we're going to look for NEW rules in the parsed content only
// if such a rule exists, add it to the destination file
// this way, we preserve all hand-modified rules in the <theme>.css rules,
// (because some exist, for collab1 and ace_indentation_guide
try {
var outThemeCss = fs.readFileSync(__dirname + "/../lib/ace/theme/" + name + ".css");
var oldRules = cssParse(outThemeCss).stylesheet.rules;
var newRules = cssParse(css).stylesheet.rules;
for (var i = 0; i < newRules.length; i++) {
var newSelectors = newRules[i].selectors;
for (var j = 0; j < oldRules.length; j++) {
var oldSelectors = oldRules[j].selectors;
newSelectors = newSelectors.filter(function(s) {
return oldSelectors.indexOf(s) == -1;
})
if (!newSelectors.length)
break;
}
if (newSelectors.length) {
newRules[i].selectors = newSelectors;
console.log("Adding NEW rule: ", newRules[i])
oldRules.splice(i, 0, newRules[i]);
}
}
oldRules = normalizeStylesheet(oldRules);
css = cssStringify({stylesheet: {rules: oldRules}}, { compress: false });
} catch(e) {
console.log("Creating new file: " + name + ".css")
}
fs.writeFileSync(__dirname + "/../lib/ace/theme/" + name + ".js", js);
fs.writeFileSync(__dirname + "/../lib/ace/theme/" + name + ".css", css);
})
}
for (var name in themes)
convertTheme(name);
for (var name in themes) {
convertTheme(name);
}
var sortedUnsupportedScopes = {};
for (var u in unsupportedScopes) {
var value = unsupportedScopes[u];
if (sortedUnsupportedScopes[value] === undefined) {
sortedUnsupportedScopes[value] = [];
}
sortedUnsupportedScopes[value].push(u);
}
console.log("I found these unsupported scopes:");
console.log(sortedUnsupportedScopes);
console.log("It's safe to ignore these, but they may affect your syntax highlighting if your mode depends on any of these rules.");
console.log("Refer to the docs on ace.ajax.org for information on how to add a scope to the CSS generator.");
/*** TODO: generate images for indent guides in node
var indentGuideColor = "#2D2D2D"
var canvas = document.createElement("canvas")
canvas.width = 1; canvas.height = 2;
var ctx = canvas.getContext("2d")
imageData = ctx.getImageData(0,0,1,2)
function getColor(color) {
ctx.fillStyle = color;
ctx.fillRect(0,0,1,2);
return Array.slice(ctx.getImageData(0,0,1,2).data).slice(0,4)
}
bgColor = getComputedStyle(ace.renderer.scroller).backgroundColor
var a = [].concat(getColor(bgColor), getColor(indentGuideColor));
a.forEach(function(val,i){imageData.data[i] = val})
ctx.putImageData(imageData,0,0)
image = canvas.toDataURL("png")
var rule = "."+ace.renderer.$theme +" .ace_indent-guide {\n\
background: url(" + image +") right repeat-y;\n\
}"
console.log(rule)
require("ace/lib/dom").importCssString(rule)
*/

View file

@ -0,0 +1,294 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>author</key>
<string>Austin Cummings</string>
<key>name</key>
<string>Chrome DevTools</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
<dict>
<key>background</key>
<string>#FFFFFF</string>
<key>caret</key>
<string>#000000</string>
<key>foreground</key>
<string>#000000</string>
<key>invisibles</key>
<string>#B3B3B3F4</string>
<key>lineHighlight</key>
<string>#0000001A</string>
<key>selection</key>
<string>#BAD6FD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>String</string>
<key>scope</key>
<string>string</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C41A16</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Number</string>
<key>scope</key>
<string>constant.numeric</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#1C00CF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Keyword</string>
<key>scope</key>
<string>keyword</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#AA0D91</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Operator</string>
<key>scope</key>
<string>keyword.operator</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Identifier</string>
<key>scope</key>
<string>constant.language</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#AA0D91</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Exception</string>
<key>scope</key>
<string>support.class.exception</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#990000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Function name</string>
<key>scope</key>
<string>entity.name.function</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#000000</string>
<!-- <key>fontStyle</key>
<string>italic</string> -->
</dict>
</dict>
<dict>
<key>name</key>
<string>Type name</string>
<key>scope</key>
<string>entity.name.type</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold underline</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Arguments</string>
<key>scope</key>
<string>variable.parameter</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Comment</string>
<key>scope</key>
<string>comment</string>
<key>settings</key>
<dict>
<!-- <key>fontStyle</key>
<string>italic</string> -->
<key>foreground</key>
<string>#007400</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Invalid</string>
<key>scope</key>
<string>invalid</string>
<key>settings</key>
<dict>
<!-- <key>background</key>
<string>#E71A114D</string> -->
<key>foreground</key>
<string>#FF0000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Trailing whitespace</string>
<key>scope</key>
<string>invalid.deprecated.trailing-whitespace</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#E71A1100</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Embedded source</string>
<key>scope</key>
<string>text source</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#FAFAFAFC</string>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Tag</string>
<key>scope</key>
<string>meta.tag, declaration.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#AA0D91</string>
</dict>
</dict>
<!-- <dict>
<key>name</key>
<string>Constant</string>
<key>scope</key>
<string>constant, support.constant</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict> -->
<dict>
<key>name</key>
<string>Support</string>
<key>scope</key>
<string>support</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Storage</string>
<key>scope</key>
<string>storage</string>
<key>settings</key>
<dict>
<!-- <key>fontStyle</key>
<string>bold</string> -->
<key>foreground</key>
<string>#AA0D91</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Section name</string>
<key>scope</key>
<string>entity.name.section</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold underline</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Frame title</string>
<key>scope</key>
<string>entity.name.function.frame</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#000000</string>
<!-- <string>#881280</string> -->
</dict>
</dict>
<dict>
<key>name</key>
<string>XML Declaration</string>
<key>scope</key>
<string>meta.tag.preprocessor.xml</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#333333</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Tag Attribute</string>
<key>scope</key>
<string>entity.other.attribute-name</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic</string>
<key>foreground</key>
<!-- <string>#3366CC</string> -->
<string>#994500</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Tag Name</string>
<key>scope</key>
<string>entity.name.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#881280</string>
<!-- <key>fontStyle</key>
<string>bold</string> -->
</dict>
</dict>
</array>
<key>uuid</key>
<string>4FCFA210-B247-11D9-9D00-000D93347A42</string>
</dict>
</plist>

View file

@ -0,0 +1,521 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>comment</key>
<string>By Jim Isaacs - jimisaacs.com</string>
<key>name</key>
<string>Dreamweaver</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
<dict>
<key>background</key>
<string>#FFFFFF</string>
<key>caret</key>
<string>#000000</string>
<key>foreground</key>
<string>#000000</string>
<key>invisibles</key>
<string>#BFBFBF</string>
<key>lineHighlight</key>
<string>#00000012</string>
<key>selection</key>
<string>#5EA0FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>text</string>
<key>scope</key>
<string>text</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>constant numeric</string>
<key>scope</key>
<string>constant.numeric - source.css</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#EE000B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>comment general</string>
<key>scope</key>
<string>comment</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#9A9A9A</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>html meta</string>
<key>scope</key>
<string>text.html meta.tag</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#00359E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>html string</string>
<key>scope</key>
<string>text.html.basic meta.tag string.quoted - source</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#001EFF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>html contstant</string>
<key>scope</key>
<string>text.html.basic constant.character.entity.html</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>html a tag</string>
<key>scope</key>
<string>text.html meta.tag.a - string</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#106800</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>html img tag</string>
<key>scope</key>
<string>text.html meta.tag.img - string</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#6D232E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>html form tag</string>
<key>scope</key>
<string>text.html meta.tag.form - string</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FF9700</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>html table</string>
<key>scope</key>
<string>text.html meta.tag.table - string</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#009079</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js embedded</string>
<key>scope</key>
<string>source.js.embedded.html punctuation.definition.tag - source.php, source.js.embedded.html entity.name.tag.script, source.js.embedded entity.other.attribute-name - source.js string</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#842B44</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js comment</string>
<key>scope</key>
<string>source.js comment - source.php</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#9A9A9A</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js meta function</string>
<key>scope</key>
<string>source.js meta.function - source.php</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js instance / support.function</string>
<key>scope</key>
<string>source.js meta.class - source.php, source.js support.function - source.php</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#24C696</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js string</string>
<key>scope</key>
<string>source.js string - source.php, source.js keyword.operator</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#0035FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js support</string>
<key>scope</key>
<string>source.js support.class</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#7E00B7</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js storage</string>
<key>scope</key>
<string>source.js storage</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js storage (not function) / bool / new / braces</string>
<key>scope</key>
<string>source.js storage - storage.type.function - source.php, source.js constant - source.php, source.js keyword - source.php, source.js variable.language, source.js meta.brace, source.js punctuation.definition.parameters.begin, source.js punctuation.definition.parameters.end</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#05208C</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>js regexp</string>
<key>scope</key>
<string>source.js string.regexp, source.js string.regexp constant</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#106800</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css embedded</string>
<key>scope</key>
<string>source.css.embedded.html punctuation.definition.tag, source.css.embedded.html entity.name.tag.style, source.css.embedded entity.other.attribute-name - meta.selector</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#8D00B7</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css @import</string>
<key>scope</key>
<string>source.css meta.at-rule.import.css</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#009C7F</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css @important</string>
<key>scope</key>
<string>source.css keyword.other.important</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#EE000B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css @media</string>
<key>scope</key>
<string>source.css meta.at-rule.media</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#430303</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css string</string>
<key>scope</key>
<string>source.css string</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#106800</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css selector/prop-list</string>
<key>scope</key>
<string>source.css meta.selector, source.css meta.property-list, source.css meta.at-rule</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#DA29FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css punctuation</string>
<key>scope</key>
<string>source.css punctuation.separator - source.php, source.css punctuation.terminator - source.php</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#DA29FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css property name</string>
<key>scope</key>
<string>source.css meta.property-name</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#05208C</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>css property value</string>
<key>scope</key>
<string>source.css meta.property-value</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#0035FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php begin/end block</string>
<key>scope</key>
<string>source.php punctuation.section.embedded.begin, source.php punctuation.section.embedded.end</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#EE000B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php</string>
<key>scope</key>
<string>source.php - punctuation.section</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php varaible</string>
<key>scope</key>
<string>source.php variable, source.php meta.function.arguments</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php punctuation</string>
<key>scope</key>
<string>source.php punctuation - string - variable - meta.function</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#05208C</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php storage.type</string>
<key>scope</key>
<string>source.php storage.type</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#24BF96</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php keyword general / storage misc</string>
<key>scope</key>
<string>source.php keyword - comment, source.php storage.type.class, source.php storage.type.interface, source.php storage.modifier, source.php constant.language</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#009714</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php support / storage / operator</string>
<key>scope</key>
<string>source.php support , source.php storage, source.php keyword.operator, source.php storage.type.function</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#0035FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php varaible global</string>
<key>scope</key>
<string>source.php variable.other.global</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#0092F2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php support constant</string>
<key>scope</key>
<string>source.php support.constant, source.php constant.language.php</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#551D02</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php string</string>
<key>scope</key>
<string>source.php string, source.php string keyword.operator</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#E20000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php string variable</string>
<key>scope</key>
<string>source.php string.quoted.double variable</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FF6200</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>php comment general</string>
<key>scope</key>
<string>source.php comment</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FF9404</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Invalid</string>
<key>scope</key>
<string>invalid</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#EFFF8A</string>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#EE000B</string>
</dict>
</dict>
</array>
<key>uuid</key>
<string>4C43099A-C325-4F56-BACB-F332209207B0</string>
</dict>
</plist>

View file

@ -0,0 +1,573 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>author</key>
<string>Martin Kühl</string>
<key>comment</key>
<string>A theme based on the GitHub code stylesheet.</string>
<key>name</key>
<string>GitHub</string>
<key>settings</key>
<array>
<dict>
<key>comment</key>
<string>
background #files .file .data background-color
caret #files .file .meta color
invisibles .syntax .w
lineHighlight #FFFEEB #files .file .private background-color
alt: #FFFFCC colour that gets added via javascript
selection #B4D5FE handmade :-)
alt: #FFFFCC colour that gets added via javascript
#EAF2F5 #header .userbox background-color
#EAEAEA #files .file background-color
#DEDEDE #files .file border-color
#F9EA86 Mac OS X system selection colour “Gold”
</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#F8F8FF</string>
<key>caret</key>
<string>#666666</string>
<key>foreground</key>
<string>#000000</string>
<key>invisibles</key>
<string>#BBBBBB</string>
<key>lineHighlight</key>
<string>#FFFEEB</string>
<key>selection</key>
<string>#B4D5FE</string>
</dict>
</dict>
<dict>
<key>comment</key>
<string>.syntax .c, .syntax .c[ml]</string>
<key>name</key>
<string>Comment</string>
<key>scope</key>
<string>comment</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic</string>
<key>foreground</key>
<string>#999988</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Comment.Preproc</string>
<key>scope</key>
<string>comment.block.preprocessor</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .cp</string>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#999999</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Comment.Special</string>
<key>scope</key>
<string>comment.documentation, comment.block.documentation</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .cs</string>
<key>fontStyle</key>
<string>bold italic</string>
<key>foreground</key>
<string>#999999</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Error</string>
<key>scope</key>
<string>invalid.illegal</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#E3D2D2</string>
<key>comment</key>
<string>.syntax .err</string>
<key>foreground</key>
<string>#A61717</string>
</dict>
</dict>
<dict>
<key>comment</key>
<string>.syntax .k, .syntax .k[dpr]</string>
<key>name</key>
<string>Keyword</string>
<key>scope</key>
<string>keyword, storage</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<dict>
<key>comment</key>
<string>.syntax .o, .syntax .ow</string>
<key>name</key>
<string>Operator</string>
<key>scope</key>
<string>keyword.operator</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Keyword.Constant</string>
<key>scope</key>
<string>constant.language, support.constant</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .kc</string>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Keyword.Type</string>
<key>scope</key>
<string>storage.type, support.type</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .kt</string>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#445588</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Attribute</string>
<key>scope</key>
<string>entity.other.attribute-name</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .na</string>
<key>foreground</key>
<string>#008080</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Builtin</string>
<key>scope</key>
<string>variable.other</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .nb</string>
<key>foreground</key>
<string>#0086B3</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Builtin.Pseudo</string>
<key>scope</key>
<string>variable.language</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .bp</string>
<key>foreground</key>
<string>#999999</string>
</dict>
</dict>
<dict>
<key>comment</key>
<string>TODO: support.class is styled as Name.Constant on GitHub.</string>
<key>name</key>
<string>Name.Class</string>
<key>scope</key>
<string>entity.name.type, entity.other.inherited-class, support.class</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .nc</string>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#445588</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Constant</string>
<key>scope</key>
<string>variable.other.constant</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .no</string>
<key>foreground</key>
<string>#008080</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Entity</string>
<key>scope</key>
<string>constant.character.entity</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .ni</string>
<key>foreground</key>
<string>#800080</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Exception</string>
<key>scope</key>
<string>entity.name.exception</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .ne</string>
<key>foreground</key>
<string>#990000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Function</string>
<key>scope</key>
<string>entity.name.function, support.function, keyword.other.name-of-parameter</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .nf</string>
<key>foreground</key>
<string>#990000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Namespace</string>
<key>scope</key>
<string>entity.name.section</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .nn</string>
<key>foreground</key>
<string>#555555</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Tag</string>
<key>scope</key>
<string>entity.name.tag</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .nt</string>
<key>foreground</key>
<string>#000080</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Name.Variable</string>
<key>scope</key>
<string>variable.parameter, support.variable</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .nv, .style .v[cgi]</string>
<key>foreground</key>
<string>#008080</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Literal.Number</string>
<key>scope</key>
<string>constant.numeric, constant.other</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .m, .style .m[fhio], .style .il</string>
<key>foreground</key>
<string>#009999</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Literal.String</string>
<key>scope</key>
<string>string - string source, constant.character</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .s[bcd2ehixl]</string>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#DD1144</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Literal.String.Regex</string>
<key>scope</key>
<string>string.regexp</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .sr</string>
<key>foreground</key>
<string>#009926</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Literal.String.Symbol</string>
<key>scope</key>
<string>constant.other.symbol</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.style .ss</string>
<key>foreground</key>
<string>#990073</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Punctuation</string>
<key>scope</key>
<string>punctuation</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Deleted</string>
<key>scope</key>
<string>markup.deleted</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#FFDDDD</string>
<key>comment</key>
<string>.syntax .gd</string>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Emph</string>
<key>scope</key>
<string>markup.italic</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .ge</string>
<key>fontStyle</key>
<string>italic</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Error</string>
<key>scope</key>
<string>markup.error</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .gr</string>
<key>foreground</key>
<string>#AA0000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Heading</string>
<key>scope</key>
<string>markup.heading.1</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .gh</string>
<key>foreground</key>
<string>#999999</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Inserted</string>
<key>scope</key>
<string>markup.inserted</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#DDFFDD</string>
<key>comment</key>
<string>.syntax .gi</string>
<key>foreground</key>
<string>#000000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Output</string>
<key>scope</key>
<string>markup.output, markup.raw</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .go</string>
<key>foreground</key>
<string>#888888</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Prompt</string>
<key>scope</key>
<string>markup.prompt</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .gp</string>
<key>foreground</key>
<string>#555555</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Strong</string>
<key>scope</key>
<string>markup.bold</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .gs</string>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Subheading</string>
<key>scope</key>
<string>markup.heading</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .gu</string>
<key>foreground</key>
<string>#AAAAAA</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Traceback</string>
<key>scope</key>
<string>markup.traceback</string>
<key>settings</key>
<dict>
<key>comment</key>
<string>.syntax .gt</string>
<key>foreground</key>
<string>#AA0000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Generic.Underline</string>
<key>scope</key>
<string>markup.underline</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>underline</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Extra: Diff Range</string>
<key>scope</key>
<string>meta.diff.range, meta.diff.index, meta.separator</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#EAF2F5</string>
<key>comment</key>
<string>.syntax .gc</string>
<key>foreground</key>
<string>#999999</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Extra: Diff From</string>
<key>scope</key>
<string>meta.diff.header.from-file</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#FFDDDD</string>
<key>foreground</key>
<string>#999999</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Extra: Diff To</string>
<key>scope</key>
<string>meta.diff.header.to-file</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#DDFFDD</string>
<key>foreground</key>
<string>#999999</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Extra: Link</string>
<key>scope</key>
<string>meta.link</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#4183C4</string>
</dict>
</dict>
</array>
<key>uuid</key>
<string>FDD6F02A-74F7-4B6C-97F1-857D792EC90E</string>
</dict>
</plist>

View file

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>comment</key>
<string>Carmine Paolino</string>
<key>name</key>
<string>Xcode default</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
<dict>
<key>background</key>
<string>#FFFFFF</string>
<key>caret</key>
<string>#000000</string>
<key>foreground</key>
<string>#000000</string>
<key>invisibles</key>
<string>#BFBFBF</string>
<key>lineHighlight</key>
<string>#00000012</string>
<key>selection</key>
<string>#B5D5FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Comment</string>
<key>scope</key>
<string>comment</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#008E00</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Preprocessor Statements</string>
<key>scope</key>
<string>meta.preprocessor, keyword.control.import</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#7D4726</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>String</string>
<key>scope</key>
<string>string</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#DF0002</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Number</string>
<key>scope</key>
<string>constant.numeric</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#3A00DC</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Built-in constant</string>
<key>scope</key>
<string>constant.language</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C800A4</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>User-defined constant</string>
<key>scope</key>
<string>constant.character, constant.other</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#275A5E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Variable</string>
<key>scope</key>
<string>variable.language, variable.other</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C800A4</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Keyword</string>
<key>scope</key>
<string>keyword</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C800A4</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Storage</string>
<key>scope</key>
<string>storage</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C900A4</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Class name</string>
<key>scope</key>
<string>entity.name.class</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#438288</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Inherited class</string>
<key>scope</key>
<string>entity.other.inherited-class</string>
<key>settings</key>
<dict/>
</dict>
<dict>
<key>name</key>
<string>Function name</string>
<key>scope</key>
<string>entity.name.function</string>
<key>settings</key>
<dict/>
</dict>
<dict>
<key>name</key>
<string>Function argument</string>
<key>scope</key>
<string>variable.parameter</string>
<key>settings</key>
<dict/>
</dict>
<dict>
<key>name</key>
<string>Tag name</string>
<key>scope</key>
<string>entity.name.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#790EAD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Tag attribute</string>
<key>scope</key>
<string>entity.other.attribute-name</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#450084</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Library function</string>
<key>scope</key>
<string>support.function</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#450084</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Library constant</string>
<key>scope</key>
<string>support.constant</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#450084</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Library class/type</string>
<key>scope</key>
<string>support.type, support.class</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#790EAD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Library variable</string>
<key>scope</key>
<string>support.other.variable</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#790EAD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Invalid</string>
<key>scope</key>
<string>invalid</string>
<key>settings</key>
<dict/>
</dict>
</array>
<key>uuid</key>
<string>EE3AD170-2B7F-4DE1-B724-C75F13FE0085</string>
</dict>
</plist>