提交 ac28d91d 编写于 作者: M Martin Aeschlimann

[seti] Incorrect icon colors in explorer when using Light themes. Fixes #34850

上级 e98c87f6
...@@ -117,11 +117,15 @@ function copyFile(fileName, dest) { ...@@ -117,11 +117,15 @@ function copyFile(fileName, dest) {
}); });
} }
function invertColor(color) { function darkenColor(color) {
var res = '#'; var res = '#';
for (var i = 1; i < 7; i+=2) { for (var i = 1; i < 7; i+=2) {
var newVal = 255 - parseInt('0x' + color.substr(i, 2), 16); var newVal = Math.round(parseInt('0x' + color.substr(i, 2), 16) * 0.9);
res += newVal.toString(16); var hex = newVal.toString(16);
if (hex.length == 1) {
res += '0';
}
res += hex;
} }
return res; return res;
} }
...@@ -193,7 +197,7 @@ exports.update = function () { ...@@ -193,7 +197,7 @@ exports.update = function () {
if (colorValue) { if (colorValue) {
entry.fontColor = colorValue; entry.fontColor = colorValue;
var entryInverse = { fontCharacter: entry.fontCharacter, fontColor: invertColor(colorValue) }; var entryInverse = { fontCharacter: entry.fontCharacter, fontColor: darkenColor(colorValue) };
iconDefinitions[def + '_light'] = entryInverse; iconDefinitions[def + '_light'] = entryInverse;
} }
} }
...@@ -213,10 +217,10 @@ exports.update = function () { ...@@ -213,10 +217,10 @@ exports.update = function () {
var res = { var res = {
information_for_contributors: [ information_for_contributors: [
'This file has been generated from data in https://github.com/jesseweed/seti-ui:', 'This file has been generated from data in https://github.com/jesseweed/seti-ui',
'- icon definitions: styles/_fonts/seti.less', '- icon definitions: https://github.com/jesseweed/seti-ui/blob/master/styles/_fonts/seti.less',
'- icon colors: styles/ui-variables.less', '- icon colors: https://github.com/jesseweed/seti-ui/blob/master/styles/ui-variables.less',
'- file associations: styles/icons/mapping.less', '- file associations: https://github.com/jesseweed/seti-ui/blob/master/styles/components/icons/mapping.less',
'If you want to provide a fix or improvement, please create a pull request against the jesseweed/seti-ui repository.', 'If you want to provide a fix or improvement, please create a pull request against the jesseweed/seti-ui repository.',
'Once accepted there, we are happy to receive an update request.', 'Once accepted there, we are happy to receive an update request.',
], ],
......
{ {
"information_for_contributors": [ "information_for_contributors": [
"This file has been generated from data in https://github.com/jesseweed/seti-ui:", "This file has been generated from data in https://github.com/jesseweed/seti-ui",
"- icon definitions: styles/_fonts/seti.less", "- icon definitions: https://github.com/jesseweed/seti-ui/blob/master/styles/_fonts/seti.less",
"- icon colors: styles/ui-variables.less", "- icon colors: https://github.com/jesseweed/seti-ui/blob/master/styles/ui-variables.less",
"- file associations: styles/components/icons/mapping.lesst", "- file associations: https://github.com/jesseweed/seti-ui/blob/master/styles/components/icons/mapping.less",
"If you want to provide a fix or improvement, please create a pull request against the jesseweed/seti-ui repository.", "If you want to provide a fix or improvement, please create a pull request against the jesseweed/seti-ui repository.",
"Once accepted there, we are happy to receive an update request." "Once accepted there, we are happy to receive an update request."
], ],
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
}, },
"_asm_light": { "_asm_light": {
"fontCharacter": "\\E003", "fontCharacter": "\\E003",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_asm": { "_asm": {
"fontCharacter": "\\E003", "fontCharacter": "\\E003",
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
}, },
"_audio_light": { "_audio_light": {
"fontCharacter": "\\E004", "fontCharacter": "\\E004",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_audio": { "_audio": {
"fontCharacter": "\\E004", "fontCharacter": "\\E004",
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
}, },
"_babel_light": { "_babel_light": {
"fontCharacter": "\\E005", "fontCharacter": "\\E005",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_babel": { "_babel": {
"fontCharacter": "\\E005", "fontCharacter": "\\E005",
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
}, },
"_bower_light": { "_bower_light": {
"fontCharacter": "\\E006", "fontCharacter": "\\E006",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_bower": { "_bower": {
"fontCharacter": "\\E006", "fontCharacter": "\\E006",
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
}, },
"_bsl_light": { "_bsl_light": {
"fontCharacter": "\\E007", "fontCharacter": "\\E007",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_bsl": { "_bsl": {
"fontCharacter": "\\E007", "fontCharacter": "\\E007",
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
}, },
"_c-sharp_light": { "_c-sharp_light": {
"fontCharacter": "\\E008", "fontCharacter": "\\E008",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_c-sharp": { "_c-sharp": {
"fontCharacter": "\\E008", "fontCharacter": "\\E008",
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
}, },
"_c_light": { "_c_light": {
"fontCharacter": "\\E009", "fontCharacter": "\\E009",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_c": { "_c": {
"fontCharacter": "\\E009", "fontCharacter": "\\E009",
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
}, },
"_cake_light": { "_cake_light": {
"fontCharacter": "\\E00A", "fontCharacter": "\\E00A",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_cake": { "_cake": {
"fontCharacter": "\\E00A", "fontCharacter": "\\E00A",
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
}, },
"_cake_php_light": { "_cake_php_light": {
"fontCharacter": "\\E00B", "fontCharacter": "\\E00B",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_cake_php": { "_cake_php": {
"fontCharacter": "\\E00B", "fontCharacter": "\\E00B",
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
}, },
"_clock_light": { "_clock_light": {
"fontCharacter": "\\E00F", "fontCharacter": "\\E00F",
"fontColor": "#927f79" "fontColor": "#627379"
}, },
"_clock": { "_clock": {
"fontCharacter": "\\E00F", "fontCharacter": "\\E00F",
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
}, },
"_code-climate_light": { "_code-climate_light": {
"fontCharacter": "\\E010", "fontCharacter": "\\E010",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_code-climate": { "_code-climate": {
"fontCharacter": "\\E010", "fontCharacter": "\\E010",
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
}, },
"_coffee_light": { "_coffee_light": {
"fontCharacter": "\\E011", "fontCharacter": "\\E011",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_coffee": { "_coffee": {
"fontCharacter": "\\E011", "fontCharacter": "\\E011",
...@@ -138,7 +138,7 @@ ...@@ -138,7 +138,7 @@
}, },
"_coldfusion_light": { "_coldfusion_light": {
"fontCharacter": "\\E013", "fontCharacter": "\\E013",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_coldfusion": { "_coldfusion": {
"fontCharacter": "\\E013", "fontCharacter": "\\E013",
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
}, },
"_config_light": { "_config_light": {
"fontCharacter": "\\E014", "fontCharacter": "\\E014",
"fontColor": "#927f79" "fontColor": "#627379"
}, },
"_config": { "_config": {
"fontCharacter": "\\E014", "fontCharacter": "\\E014",
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
}, },
"_cpp_light": { "_cpp_light": {
"fontCharacter": "\\E015", "fontCharacter": "\\E015",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_cpp": { "_cpp": {
"fontCharacter": "\\E015", "fontCharacter": "\\E015",
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
}, },
"_css_light": { "_css_light": {
"fontCharacter": "\\E016", "fontCharacter": "\\E016",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_css": { "_css": {
"fontCharacter": "\\E016", "fontCharacter": "\\E016",
...@@ -170,7 +170,7 @@ ...@@ -170,7 +170,7 @@
}, },
"_csv_light": { "_csv_light": {
"fontCharacter": "\\E017", "fontCharacter": "\\E017",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_csv": { "_csv": {
"fontCharacter": "\\E017", "fontCharacter": "\\E017",
...@@ -178,7 +178,7 @@ ...@@ -178,7 +178,7 @@
}, },
"_d_light": { "_d_light": {
"fontCharacter": "\\E018", "fontCharacter": "\\E018",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_d": { "_d": {
"fontCharacter": "\\E018", "fontCharacter": "\\E018",
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
}, },
"_db_light": { "_db_light": {
"fontCharacter": "\\E019", "fontCharacter": "\\E019",
"fontColor": "#aac7a" "fontColor": "#dd4b78"
}, },
"_db": { "_db": {
"fontCharacter": "\\E019", "fontCharacter": "\\E019",
...@@ -194,7 +194,7 @@ ...@@ -194,7 +194,7 @@
}, },
"_default_light": { "_default_light": {
"fontCharacter": "\\E01A", "fontCharacter": "\\E01A",
"fontColor": "#2b2829" "fontColor": "#bfc2c1"
}, },
"_default": { "_default": {
"fontCharacter": "\\E01A", "fontCharacter": "\\E01A",
...@@ -205,7 +205,7 @@ ...@@ -205,7 +205,7 @@
}, },
"_docker_light": { "_docker_light": {
"fontCharacter": "\\E01C", "fontCharacter": "\\E01C",
"fontColor": "#aac7a" "fontColor": "#dd4b78"
}, },
"_docker": { "_docker": {
"fontCharacter": "\\E01C", "fontCharacter": "\\E01C",
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
}, },
"_ejs_light": { "_ejs_light": {
"fontCharacter": "\\E01E", "fontCharacter": "\\E01E",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_ejs": { "_ejs": {
"fontCharacter": "\\E01E", "fontCharacter": "\\E01E",
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
}, },
"_elixir_light": { "_elixir_light": {
"fontCharacter": "\\E01F", "fontCharacter": "\\E01F",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_elixir": { "_elixir": {
"fontCharacter": "\\E01F", "fontCharacter": "\\E01F",
...@@ -232,7 +232,7 @@ ...@@ -232,7 +232,7 @@
}, },
"_elixir_script_light": { "_elixir_script_light": {
"fontCharacter": "\\E020", "fontCharacter": "\\E020",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_elixir_script": { "_elixir_script": {
"fontCharacter": "\\E020", "fontCharacter": "\\E020",
...@@ -240,7 +240,7 @@ ...@@ -240,7 +240,7 @@
}, },
"_elm_light": { "_elm_light": {
"fontCharacter": "\\E021", "fontCharacter": "\\E021",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_elm": { "_elm": {
"fontCharacter": "\\E021", "fontCharacter": "\\E021",
...@@ -251,7 +251,7 @@ ...@@ -251,7 +251,7 @@
}, },
"_eslint_light": { "_eslint_light": {
"fontCharacter": "\\E023", "fontCharacter": "\\E023",
"fontColor": "#b2a5a1" "fontColor": "#455155"
}, },
"_eslint": { "_eslint": {
"fontCharacter": "\\E023", "fontCharacter": "\\E023",
...@@ -259,7 +259,7 @@ ...@@ -259,7 +259,7 @@
}, },
"_f-sharp_light": { "_f-sharp_light": {
"fontCharacter": "\\E024", "fontCharacter": "\\E024",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_f-sharp": { "_f-sharp": {
"fontCharacter": "\\E024", "fontCharacter": "\\E024",
...@@ -267,7 +267,7 @@ ...@@ -267,7 +267,7 @@
}, },
"_favicon_light": { "_favicon_light": {
"fontCharacter": "\\E025", "fontCharacter": "\\E025",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_favicon": { "_favicon": {
"fontCharacter": "\\E025", "fontCharacter": "\\E025",
...@@ -275,7 +275,7 @@ ...@@ -275,7 +275,7 @@
}, },
"_firebase_light": { "_firebase_light": {
"fontCharacter": "\\E026", "fontCharacter": "\\E026",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_firebase": { "_firebase": {
"fontCharacter": "\\E026", "fontCharacter": "\\E026",
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
}, },
"_firefox_light": { "_firefox_light": {
"fontCharacter": "\\E027", "fontCharacter": "\\E027",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_firefox": { "_firefox": {
"fontCharacter": "\\E027", "fontCharacter": "\\E027",
...@@ -294,7 +294,7 @@ ...@@ -294,7 +294,7 @@
}, },
"_font_light": { "_font_light": {
"fontCharacter": "\\E029", "fontCharacter": "\\E029",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_font": { "_font": {
"fontCharacter": "\\E029", "fontCharacter": "\\E029",
...@@ -302,7 +302,7 @@ ...@@ -302,7 +302,7 @@
}, },
"_git_light": { "_git_light": {
"fontCharacter": "\\E02A", "fontCharacter": "\\E02A",
"fontColor": "#beaca4" "fontColor": "#3b4b52"
}, },
"_git": { "_git": {
"fontCharacter": "\\E02A", "fontCharacter": "\\E02A",
...@@ -319,7 +319,7 @@ ...@@ -319,7 +319,7 @@
}, },
"_go_light": { "_go_light": {
"fontCharacter": "\\E02E", "fontCharacter": "\\E02E",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_go": { "_go": {
"fontCharacter": "\\E02E", "fontCharacter": "\\E02E",
...@@ -327,7 +327,7 @@ ...@@ -327,7 +327,7 @@
}, },
"_go2_light": { "_go2_light": {
"fontCharacter": "\\E02F", "fontCharacter": "\\E02F",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_go2": { "_go2": {
"fontCharacter": "\\E02F", "fontCharacter": "\\E02F",
...@@ -335,7 +335,7 @@ ...@@ -335,7 +335,7 @@
}, },
"_gradle_light": { "_gradle_light": {
"fontCharacter": "\\E030", "fontCharacter": "\\E030",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_gradle": { "_gradle": {
"fontCharacter": "\\E030", "fontCharacter": "\\E030",
...@@ -343,7 +343,7 @@ ...@@ -343,7 +343,7 @@
}, },
"_grails_light": { "_grails_light": {
"fontCharacter": "\\E031", "fontCharacter": "\\E031",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_grails": { "_grails": {
"fontCharacter": "\\E031", "fontCharacter": "\\E031",
...@@ -351,7 +351,7 @@ ...@@ -351,7 +351,7 @@
}, },
"_grunt_light": { "_grunt_light": {
"fontCharacter": "\\E032", "fontCharacter": "\\E032",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_grunt": { "_grunt": {
"fontCharacter": "\\E032", "fontCharacter": "\\E032",
...@@ -359,7 +359,7 @@ ...@@ -359,7 +359,7 @@
}, },
"_gulp_light": { "_gulp_light": {
"fontCharacter": "\\E033", "fontCharacter": "\\E033",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_gulp": { "_gulp": {
"fontCharacter": "\\E033", "fontCharacter": "\\E033",
...@@ -370,7 +370,7 @@ ...@@ -370,7 +370,7 @@
}, },
"_haml_light": { "_haml_light": {
"fontCharacter": "\\E035", "fontCharacter": "\\E035",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_haml": { "_haml": {
"fontCharacter": "\\E035", "fontCharacter": "\\E035",
...@@ -378,7 +378,7 @@ ...@@ -378,7 +378,7 @@
}, },
"_haskell_light": { "_haskell_light": {
"fontCharacter": "\\E036", "fontCharacter": "\\E036",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_haskell": { "_haskell": {
"fontCharacter": "\\E036", "fontCharacter": "\\E036",
...@@ -386,7 +386,7 @@ ...@@ -386,7 +386,7 @@
}, },
"_heroku_light": { "_heroku_light": {
"fontCharacter": "\\E037", "fontCharacter": "\\E037",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_heroku": { "_heroku": {
"fontCharacter": "\\E037", "fontCharacter": "\\E037",
...@@ -394,7 +394,7 @@ ...@@ -394,7 +394,7 @@
}, },
"_hex_light": { "_hex_light": {
"fontCharacter": "\\E038", "fontCharacter": "\\E038",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_hex": { "_hex": {
"fontCharacter": "\\E038", "fontCharacter": "\\E038",
...@@ -402,7 +402,7 @@ ...@@ -402,7 +402,7 @@
}, },
"_html_light": { "_html_light": {
"fontCharacter": "\\E039", "fontCharacter": "\\E039",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_html": { "_html": {
"fontCharacter": "\\E039", "fontCharacter": "\\E039",
...@@ -413,7 +413,7 @@ ...@@ -413,7 +413,7 @@
}, },
"_ignored_light": { "_ignored_light": {
"fontCharacter": "\\E03B", "fontCharacter": "\\E03B",
"fontColor": "#beaca4" "fontColor": "#3b4b52"
}, },
"_ignored": { "_ignored": {
"fontCharacter": "\\E03B", "fontCharacter": "\\E03B",
...@@ -421,7 +421,7 @@ ...@@ -421,7 +421,7 @@
}, },
"_illustrator_light": { "_illustrator_light": {
"fontCharacter": "\\E03C", "fontCharacter": "\\E03C",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_illustrator": { "_illustrator": {
"fontCharacter": "\\E03C", "fontCharacter": "\\E03C",
...@@ -429,7 +429,7 @@ ...@@ -429,7 +429,7 @@
}, },
"_image_light": { "_image_light": {
"fontCharacter": "\\E03D", "fontCharacter": "\\E03D",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_image": { "_image": {
"fontCharacter": "\\E03D", "fontCharacter": "\\E03D",
...@@ -437,7 +437,7 @@ ...@@ -437,7 +437,7 @@
}, },
"_info_light": { "_info_light": {
"fontCharacter": "\\E03E", "fontCharacter": "\\E03E",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_info": { "_info": {
"fontCharacter": "\\E03E", "fontCharacter": "\\E03E",
...@@ -445,7 +445,7 @@ ...@@ -445,7 +445,7 @@
}, },
"_ionic_light": { "_ionic_light": {
"fontCharacter": "\\E03F", "fontCharacter": "\\E03F",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_ionic": { "_ionic": {
"fontCharacter": "\\E03F", "fontCharacter": "\\E03F",
...@@ -453,7 +453,7 @@ ...@@ -453,7 +453,7 @@
}, },
"_jade_light": { "_jade_light": {
"fontCharacter": "\\E040", "fontCharacter": "\\E040",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_jade": { "_jade": {
"fontCharacter": "\\E040", "fontCharacter": "\\E040",
...@@ -461,7 +461,7 @@ ...@@ -461,7 +461,7 @@
}, },
"_java_light": { "_java_light": {
"fontCharacter": "\\E041", "fontCharacter": "\\E041",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_java": { "_java": {
"fontCharacter": "\\E041", "fontCharacter": "\\E041",
...@@ -469,7 +469,7 @@ ...@@ -469,7 +469,7 @@
}, },
"_javascript_light": { "_javascript_light": {
"fontCharacter": "\\E042", "fontCharacter": "\\E042",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_javascript": { "_javascript": {
"fontCharacter": "\\E042", "fontCharacter": "\\E042",
...@@ -477,7 +477,7 @@ ...@@ -477,7 +477,7 @@
}, },
"_jenkins_light": { "_jenkins_light": {
"fontCharacter": "\\E043", "fontCharacter": "\\E043",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_jenkins": { "_jenkins": {
"fontCharacter": "\\E043", "fontCharacter": "\\E043",
...@@ -485,7 +485,7 @@ ...@@ -485,7 +485,7 @@
}, },
"_jinja_light": { "_jinja_light": {
"fontCharacter": "\\E044", "fontCharacter": "\\E044",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_jinja": { "_jinja": {
"fontCharacter": "\\E044", "fontCharacter": "\\E044",
...@@ -496,7 +496,7 @@ ...@@ -496,7 +496,7 @@
}, },
"_json_light": { "_json_light": {
"fontCharacter": "\\E046", "fontCharacter": "\\E046",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_json": { "_json": {
"fontCharacter": "\\E046", "fontCharacter": "\\E046",
...@@ -504,7 +504,7 @@ ...@@ -504,7 +504,7 @@
}, },
"_julia_light": { "_julia_light": {
"fontCharacter": "\\E047", "fontCharacter": "\\E047",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_julia": { "_julia": {
"fontCharacter": "\\E047", "fontCharacter": "\\E047",
...@@ -512,7 +512,7 @@ ...@@ -512,7 +512,7 @@
}, },
"_karma_light": { "_karma_light": {
"fontCharacter": "\\E048", "fontCharacter": "\\E048",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_karma": { "_karma": {
"fontCharacter": "\\E048", "fontCharacter": "\\E048",
...@@ -520,7 +520,7 @@ ...@@ -520,7 +520,7 @@
}, },
"_less_light": { "_less_light": {
"fontCharacter": "\\E049", "fontCharacter": "\\E049",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_less": { "_less": {
"fontCharacter": "\\E049", "fontCharacter": "\\E049",
...@@ -528,7 +528,7 @@ ...@@ -528,7 +528,7 @@
}, },
"_license_light": { "_license_light": {
"fontCharacter": "\\E04A", "fontCharacter": "\\E04A",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_license": { "_license": {
"fontCharacter": "\\E04A", "fontCharacter": "\\E04A",
...@@ -536,7 +536,7 @@ ...@@ -536,7 +536,7 @@
}, },
"_liquid_light": { "_liquid_light": {
"fontCharacter": "\\E04B", "fontCharacter": "\\E04B",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_liquid": { "_liquid": {
"fontCharacter": "\\E04B", "fontCharacter": "\\E04B",
...@@ -544,7 +544,7 @@ ...@@ -544,7 +544,7 @@
}, },
"_livescript_light": { "_livescript_light": {
"fontCharacter": "\\E04C", "fontCharacter": "\\E04C",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_livescript": { "_livescript": {
"fontCharacter": "\\E04C", "fontCharacter": "\\E04C",
...@@ -552,7 +552,7 @@ ...@@ -552,7 +552,7 @@
}, },
"_lock_light": { "_lock_light": {
"fontCharacter": "\\E04D", "fontCharacter": "\\E04D",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_lock": { "_lock": {
"fontCharacter": "\\E04D", "fontCharacter": "\\E04D",
...@@ -560,7 +560,7 @@ ...@@ -560,7 +560,7 @@
}, },
"_lua_light": { "_lua_light": {
"fontCharacter": "\\E04E", "fontCharacter": "\\E04E",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_lua": { "_lua": {
"fontCharacter": "\\E04E", "fontCharacter": "\\E04E",
...@@ -568,7 +568,7 @@ ...@@ -568,7 +568,7 @@
}, },
"_makefile_light": { "_makefile_light": {
"fontCharacter": "\\E04F", "fontCharacter": "\\E04F",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_makefile": { "_makefile": {
"fontCharacter": "\\E04F", "fontCharacter": "\\E04F",
...@@ -576,7 +576,7 @@ ...@@ -576,7 +576,7 @@
}, },
"_markdown_light": { "_markdown_light": {
"fontCharacter": "\\E050", "fontCharacter": "\\E050",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_markdown": { "_markdown": {
"fontCharacter": "\\E050", "fontCharacter": "\\E050",
...@@ -584,7 +584,7 @@ ...@@ -584,7 +584,7 @@
}, },
"_maven_light": { "_maven_light": {
"fontCharacter": "\\E051", "fontCharacter": "\\E051",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_maven": { "_maven": {
"fontCharacter": "\\E051", "fontCharacter": "\\E051",
...@@ -592,7 +592,7 @@ ...@@ -592,7 +592,7 @@
}, },
"_mdo_light": { "_mdo_light": {
"fontCharacter": "\\E052", "fontCharacter": "\\E052",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_mdo": { "_mdo": {
"fontCharacter": "\\E052", "fontCharacter": "\\E052",
...@@ -600,7 +600,7 @@ ...@@ -600,7 +600,7 @@
}, },
"_mustache_light": { "_mustache_light": {
"fontCharacter": "\\E053", "fontCharacter": "\\E053",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_mustache": { "_mustache": {
"fontCharacter": "\\E053", "fontCharacter": "\\E053",
...@@ -611,7 +611,7 @@ ...@@ -611,7 +611,7 @@
}, },
"_npm_light": { "_npm_light": {
"fontCharacter": "\\E055", "fontCharacter": "\\E055",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_npm": { "_npm": {
"fontCharacter": "\\E055", "fontCharacter": "\\E055",
...@@ -619,7 +619,7 @@ ...@@ -619,7 +619,7 @@
}, },
"_npm_ignored_light": { "_npm_ignored_light": {
"fontCharacter": "\\E056", "fontCharacter": "\\E056",
"fontColor": "#beaca4" "fontColor": "#3b4b52"
}, },
"_npm_ignored": { "_npm_ignored": {
"fontCharacter": "\\E056", "fontCharacter": "\\E056",
...@@ -627,7 +627,7 @@ ...@@ -627,7 +627,7 @@
}, },
"_nunjucks_light": { "_nunjucks_light": {
"fontCharacter": "\\E057", "fontCharacter": "\\E057",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_nunjucks": { "_nunjucks": {
"fontCharacter": "\\E057", "fontCharacter": "\\E057",
...@@ -635,7 +635,7 @@ ...@@ -635,7 +635,7 @@
}, },
"_ocaml_light": { "_ocaml_light": {
"fontCharacter": "\\E058", "fontCharacter": "\\E058",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_ocaml": { "_ocaml": {
"fontCharacter": "\\E058", "fontCharacter": "\\E058",
...@@ -643,7 +643,7 @@ ...@@ -643,7 +643,7 @@
}, },
"_pdf_light": { "_pdf_light": {
"fontCharacter": "\\E059", "fontCharacter": "\\E059",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_pdf": { "_pdf": {
"fontCharacter": "\\E059", "fontCharacter": "\\E059",
...@@ -651,7 +651,7 @@ ...@@ -651,7 +651,7 @@
}, },
"_perl_light": { "_perl_light": {
"fontCharacter": "\\E05A", "fontCharacter": "\\E05A",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_perl": { "_perl": {
"fontCharacter": "\\E05A", "fontCharacter": "\\E05A",
...@@ -659,7 +659,7 @@ ...@@ -659,7 +659,7 @@
}, },
"_photoshop_light": { "_photoshop_light": {
"fontCharacter": "\\E05B", "fontCharacter": "\\E05B",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_photoshop": { "_photoshop": {
"fontCharacter": "\\E05B", "fontCharacter": "\\E05B",
...@@ -667,7 +667,7 @@ ...@@ -667,7 +667,7 @@
}, },
"_php_light": { "_php_light": {
"fontCharacter": "\\E05C", "fontCharacter": "\\E05C",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_php": { "_php": {
"fontCharacter": "\\E05C", "fontCharacter": "\\E05C",
...@@ -675,7 +675,7 @@ ...@@ -675,7 +675,7 @@
}, },
"_powershell_light": { "_powershell_light": {
"fontCharacter": "\\E05D", "fontCharacter": "\\E05D",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_powershell": { "_powershell": {
"fontCharacter": "\\E05D", "fontCharacter": "\\E05D",
...@@ -686,7 +686,7 @@ ...@@ -686,7 +686,7 @@
}, },
"_pug_light": { "_pug_light": {
"fontCharacter": "\\E05F", "fontCharacter": "\\E05F",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_pug": { "_pug": {
"fontCharacter": "\\E05F", "fontCharacter": "\\E05F",
...@@ -694,7 +694,7 @@ ...@@ -694,7 +694,7 @@
}, },
"_puppet_light": { "_puppet_light": {
"fontCharacter": "\\E060", "fontCharacter": "\\E060",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_puppet": { "_puppet": {
"fontCharacter": "\\E060", "fontCharacter": "\\E060",
...@@ -702,7 +702,7 @@ ...@@ -702,7 +702,7 @@
}, },
"_python_light": { "_python_light": {
"fontCharacter": "\\E061", "fontCharacter": "\\E061",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_python": { "_python": {
"fontCharacter": "\\E061", "fontCharacter": "\\E061",
...@@ -713,7 +713,7 @@ ...@@ -713,7 +713,7 @@
}, },
"_react_light": { "_react_light": {
"fontCharacter": "\\E063", "fontCharacter": "\\E063",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_react": { "_react": {
"fontCharacter": "\\E063", "fontCharacter": "\\E063",
...@@ -721,7 +721,7 @@ ...@@ -721,7 +721,7 @@
}, },
"_rollup_light": { "_rollup_light": {
"fontCharacter": "\\E064", "fontCharacter": "\\E064",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_rollup": { "_rollup": {
"fontCharacter": "\\E064", "fontCharacter": "\\E064",
...@@ -729,7 +729,7 @@ ...@@ -729,7 +729,7 @@
}, },
"_ruby_light": { "_ruby_light": {
"fontCharacter": "\\E065", "fontCharacter": "\\E065",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_ruby": { "_ruby": {
"fontCharacter": "\\E065", "fontCharacter": "\\E065",
...@@ -737,7 +737,7 @@ ...@@ -737,7 +737,7 @@
}, },
"_rust_light": { "_rust_light": {
"fontCharacter": "\\E066", "fontCharacter": "\\E066",
"fontColor": "#927f79" "fontColor": "#627379"
}, },
"_rust": { "_rust": {
"fontCharacter": "\\E066", "fontCharacter": "\\E066",
...@@ -745,7 +745,7 @@ ...@@ -745,7 +745,7 @@
}, },
"_salesforce_light": { "_salesforce_light": {
"fontCharacter": "\\E067", "fontCharacter": "\\E067",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_salesforce": { "_salesforce": {
"fontCharacter": "\\E067", "fontCharacter": "\\E067",
...@@ -753,7 +753,7 @@ ...@@ -753,7 +753,7 @@
}, },
"_sass_light": { "_sass_light": {
"fontCharacter": "\\E068", "fontCharacter": "\\E068",
"fontColor": "#aac7a" "fontColor": "#dd4b78"
}, },
"_sass": { "_sass": {
"fontCharacter": "\\E068", "fontCharacter": "\\E068",
...@@ -761,7 +761,7 @@ ...@@ -761,7 +761,7 @@
}, },
"_sbt_light": { "_sbt_light": {
"fontCharacter": "\\E069", "fontCharacter": "\\E069",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_sbt": { "_sbt": {
"fontCharacter": "\\E069", "fontCharacter": "\\E069",
...@@ -769,7 +769,7 @@ ...@@ -769,7 +769,7 @@
}, },
"_scala_light": { "_scala_light": {
"fontCharacter": "\\E06A", "fontCharacter": "\\E06A",
"fontColor": "#33c1bb" "fontColor": "#b8383d"
}, },
"_scala": { "_scala": {
"fontCharacter": "\\E06A", "fontCharacter": "\\E06A",
...@@ -783,7 +783,7 @@ ...@@ -783,7 +783,7 @@
}, },
"_shell_light": { "_shell_light": {
"fontCharacter": "\\E06D", "fontCharacter": "\\E06D",
"fontColor": "#b2a5a1" "fontColor": "#455155"
}, },
"_shell": { "_shell": {
"fontCharacter": "\\E06D", "fontCharacter": "\\E06D",
...@@ -791,7 +791,7 @@ ...@@ -791,7 +791,7 @@
}, },
"_slim_light": { "_slim_light": {
"fontCharacter": "\\E06E", "fontCharacter": "\\E06E",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_slim": { "_slim": {
"fontCharacter": "\\E06E", "fontCharacter": "\\E06E",
...@@ -799,7 +799,7 @@ ...@@ -799,7 +799,7 @@
}, },
"_smarty_light": { "_smarty_light": {
"fontCharacter": "\\E06F", "fontCharacter": "\\E06F",
"fontColor": "#3434be" "fontColor": "#b7b73b"
}, },
"_smarty": { "_smarty": {
"fontCharacter": "\\E06F", "fontCharacter": "\\E06F",
...@@ -807,7 +807,7 @@ ...@@ -807,7 +807,7 @@
}, },
"_spring_light": { "_spring_light": {
"fontCharacter": "\\E070", "fontCharacter": "\\E070",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_spring": { "_spring": {
"fontCharacter": "\\E070", "fontCharacter": "\\E070",
...@@ -815,7 +815,7 @@ ...@@ -815,7 +815,7 @@
}, },
"_stylus_light": { "_stylus_light": {
"fontCharacter": "\\E071", "fontCharacter": "\\E071",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_stylus": { "_stylus": {
"fontCharacter": "\\E071", "fontCharacter": "\\E071",
...@@ -823,7 +823,7 @@ ...@@ -823,7 +823,7 @@
}, },
"_sublime_light": { "_sublime_light": {
"fontCharacter": "\\E072", "fontCharacter": "\\E072",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_sublime": { "_sublime": {
"fontCharacter": "\\E072", "fontCharacter": "\\E072",
...@@ -831,7 +831,7 @@ ...@@ -831,7 +831,7 @@
}, },
"_svg_light": { "_svg_light": {
"fontCharacter": "\\E073", "fontCharacter": "\\E073",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_svg": { "_svg": {
"fontCharacter": "\\E073", "fontCharacter": "\\E073",
...@@ -839,7 +839,7 @@ ...@@ -839,7 +839,7 @@
}, },
"_swift_light": { "_swift_light": {
"fontCharacter": "\\E074", "fontCharacter": "\\E074",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_swift": { "_swift": {
"fontCharacter": "\\E074", "fontCharacter": "\\E074",
...@@ -847,7 +847,7 @@ ...@@ -847,7 +847,7 @@
}, },
"_terraform_light": { "_terraform_light": {
"fontCharacter": "\\E075", "fontCharacter": "\\E075",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_terraform": { "_terraform": {
"fontCharacter": "\\E075", "fontCharacter": "\\E075",
...@@ -855,7 +855,7 @@ ...@@ -855,7 +855,7 @@
}, },
"_tex_light": { "_tex_light": {
"fontCharacter": "\\E076", "fontCharacter": "\\E076",
"fontColor": "#2b2829" "fontColor": "#bfc2c1"
}, },
"_tex": { "_tex": {
"fontCharacter": "\\E076", "fontCharacter": "\\E076",
...@@ -869,7 +869,7 @@ ...@@ -869,7 +869,7 @@
}, },
"_twig_light": { "_twig_light": {
"fontCharacter": "\\E079", "fontCharacter": "\\E079",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_twig": { "_twig": {
"fontCharacter": "\\E079", "fontCharacter": "\\E079",
...@@ -877,7 +877,7 @@ ...@@ -877,7 +877,7 @@
}, },
"_typescript_light": { "_typescript_light": {
"fontCharacter": "\\E07A", "fontCharacter": "\\E07A",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_typescript": { "_typescript": {
"fontCharacter": "\\E07A", "fontCharacter": "\\E07A",
...@@ -885,7 +885,7 @@ ...@@ -885,7 +885,7 @@
}, },
"_vala_light": { "_vala_light": {
"fontCharacter": "\\E07B", "fontCharacter": "\\E07B",
"fontColor": "#927f79" "fontColor": "#627379"
}, },
"_vala": { "_vala": {
"fontCharacter": "\\E07B", "fontCharacter": "\\E07B",
...@@ -893,7 +893,7 @@ ...@@ -893,7 +893,7 @@
}, },
"_video_light": { "_video_light": {
"fontCharacter": "\\E07C", "fontCharacter": "\\E07C",
"fontColor": "#aac7a" "fontColor": "#dd4b78"
}, },
"_video": { "_video": {
"fontCharacter": "\\E07C", "fontCharacter": "\\E07C",
...@@ -901,7 +901,7 @@ ...@@ -901,7 +901,7 @@
}, },
"_vue_light": { "_vue_light": {
"fontCharacter": "\\E07D", "fontCharacter": "\\E07D",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_vue": { "_vue": {
"fontCharacter": "\\E07D", "fontCharacter": "\\E07D",
...@@ -909,7 +909,7 @@ ...@@ -909,7 +909,7 @@
}, },
"_windows_light": { "_windows_light": {
"fontCharacter": "\\E07E", "fontCharacter": "\\E07E",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_windows": { "_windows": {
"fontCharacter": "\\E07E", "fontCharacter": "\\E07E",
...@@ -917,7 +917,7 @@ ...@@ -917,7 +917,7 @@
}, },
"_word_light": { "_word_light": {
"fontCharacter": "\\E07F", "fontCharacter": "\\E07F",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_word": { "_word": {
"fontCharacter": "\\E07F", "fontCharacter": "\\E07F",
...@@ -925,7 +925,7 @@ ...@@ -925,7 +925,7 @@
}, },
"_xls_light": { "_xls_light": {
"fontCharacter": "\\E080", "fontCharacter": "\\E080",
"fontColor": "#723eb6" "fontColor": "#7fae42"
}, },
"_xls": { "_xls": {
"fontCharacter": "\\E080", "fontCharacter": "\\E080",
...@@ -933,7 +933,7 @@ ...@@ -933,7 +933,7 @@
}, },
"_xml_light": { "_xml_light": {
"fontCharacter": "\\E081", "fontCharacter": "\\E081",
"fontColor": "#1c86cc" "fontColor": "#cc6d2e"
}, },
"_xml": { "_xml": {
"fontCharacter": "\\E081", "fontCharacter": "\\E081",
...@@ -941,7 +941,7 @@ ...@@ -941,7 +941,7 @@
}, },
"_yarn_light": { "_yarn_light": {
"fontCharacter": "\\E082", "fontCharacter": "\\E082",
"fontColor": "#ae6545" "fontColor": "#498ba7"
}, },
"_yarn": { "_yarn": {
"fontCharacter": "\\E082", "fontCharacter": "\\E082",
...@@ -949,7 +949,7 @@ ...@@ -949,7 +949,7 @@
}, },
"_yml_light": { "_yml_light": {
"fontCharacter": "\\E083", "fontCharacter": "\\E083",
"fontColor": "#5f8b3b" "fontColor": "#9068b0"
}, },
"_yml": { "_yml": {
"fontCharacter": "\\E083", "fontCharacter": "\\E083",
...@@ -957,7 +957,7 @@ ...@@ -957,7 +957,7 @@
}, },
"_zip_light": { "_zip_light": {
"fontCharacter": "\\E084", "fontCharacter": "\\E084",
"fontColor": "#927f79" "fontColor": "#627379"
}, },
"_zip": { "_zip": {
"fontCharacter": "\\E084", "fontCharacter": "\\E084",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册