From d348c5b327a2df26f5239a095e21841057e959ac Mon Sep 17 00:00:00 2001 From: Zhi Yin Date: Fri, 7 Dec 2018 23:34:28 -0500 Subject: [PATCH] tweak palette --- palettes/sepia/palette.js | 6 +++--- palettes/sepia/style.css | 18 +++++++++++------- scripts/tweak.js | 1 - 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/palettes/sepia/palette.js b/palettes/sepia/palette.js index ef5e633..90ed626 100644 --- a/palettes/sepia/palette.js +++ b/palettes/sepia/palette.js @@ -1,16 +1,16 @@ var palette = { default: '#836e69', - grey: '#999d', + grey: '#999c', red: '#f00', maroon: '#c10c', green: '#094e', - blue: '#08ad', + blue: '#08bd', yellow: '#b82', purple: '#940094ab', cyan: '#099e', orange: '#f77b00e6', olive: '#890', - pink: '#fad', + pink: '#f08c', teal: '#088', tan: '#97733dd0', magenta: '#b36d', diff --git a/palettes/sepia/style.css b/palettes/sepia/style.css index 0c4e54d..ab76a75 100644 --- a/palettes/sepia/style.css +++ b/palettes/sepia/style.css @@ -1,4 +1,3 @@ - .default { color: #0008; color: #222b; @@ -9,9 +8,11 @@ color: #3239; color: #2118; color: #8d796b; + } .grey { + color: #999c; color: #999d; } @@ -24,12 +25,14 @@ } .green { - color: #094e; + color: #094e; } .blue { - color: #08ad; + color: #07ac; + color: #08ad; + color: #08bd; } .yellow { @@ -55,19 +58,20 @@ } .orange { - color: #f77b00e6; - color: #f67a00; + color: #f77b00e6; + color: #f67a00; color: #f77b00; } .olive { - color: #890; + color: #890; } .pink { + color: #fd45ad; color: #f7c; - color: #f977c0; + color: #f08c; } .teal { diff --git a/scripts/tweak.js b/scripts/tweak.js index b4f662c..1386514 100644 --- a/scripts/tweak.js +++ b/scripts/tweak.js @@ -10,7 +10,6 @@ if (!userSettings) throw "Failed to locate settings.json of VSCode, please check scripts/path-to-user-settings.js to find why"; const palette = require(`../palettes/${themeName}/palette.js`); -console.log(palette); const rules = require('./buildRules.js')(themeName); if (!rules)