Skip to content

Commit

Permalink
Change color to match sequences at iTerm2-Color-Schemes repo
Browse files Browse the repository at this point in the history
URL:  https://github.com/mbadolato/iTerm2-Color-Schemes

Note:  this also follows the color-wheel sequence.
  • Loading branch information
Victor Wheeler committed Aug 10, 2020
1 parent 1addc8d commit fda8e9d
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -922,26 +922,25 @@ _4bit = function() {
lsResult += '// ------------------------------------------------------------------------------\n\n';
lsResult += ' {\n';
lsResult += ' "name" : "your_name",\n';
lsResult += ' // --- special colors ---\n';
lsResult += ' "background" : "' + that.model.get('colors')['background'] + '",\n';
lsResult += ' "foreground" : "' + that.model.get('colors')['foreground'] + '",\n';
lsResult += ' // --- standard colors ---\n';
lsResult += ' "black" : "' + that.model.get('colors')['black'] + '",\n';
lsResult += ' "blue" : "' + that.model.get('colors')['blue'] + '",\n';
lsResult += ' "cyan" : "' + that.model.get('colors')['cyan'] + '",\n';
lsResult += ' "red" : "' + that.model.get('colors')['red'] + '",\n';
lsResult += ' "green" : "' + that.model.get('colors')['green'] + '",\n';
lsResult += ' "yellow" : "' + that.model.get('colors')['yellow'] + '",\n';
lsResult += ' "blue" : "' + that.model.get('colors')['blue'] + '",\n';
lsResult += ' "purple" : "' + that.model.get('colors')['magenta'] + '",\n';
lsResult += ' "red" : "' + that.model.get('colors')['red'] + '",\n';
lsResult += ' "cyan" : "' + that.model.get('colors')['cyan'] + '",\n';
lsResult += ' "white" : "' + that.model.get('colors')['white'] + '",\n';
lsResult += ' "yellow" : "' + that.model.get('colors')['yellow'] + '",\n';
lsResult += ' "brightBlack" : "' + that.model.get('colors')['bright_black'] + '",\n';
lsResult += ' "brightBlue" : "' + that.model.get('colors')['bright_blue'] + '",\n';
lsResult += ' "brightCyan" : "' + that.model.get('colors')['bright_cyan'] + '",\n';
lsResult += ' "brightRed" : "' + that.model.get('colors')['bright_red'] + '",\n';
lsResult += ' "brightGreen" : "' + that.model.get('colors')['bright_green'] + '",\n';
lsResult += ' "brightYellow" : "' + that.model.get('colors')['bright_yellow'] + '"\n';
lsResult += ' "brightBlue" : "' + that.model.get('colors')['bright_blue'] + '",\n';
lsResult += ' "brightPurple" : "' + that.model.get('colors')['bright_magenta'] + '",\n';
lsResult += ' "brightRed" : "' + that.model.get('colors')['bright_red'] + '",\n';
lsResult += ' "brightCyan" : "' + that.model.get('colors')['bright_cyan'] + '",\n';
lsResult += ' "brightWhite" : "' + that.model.get('colors')['bright_white'] + '",\n';
lsResult += ' "brightYellow" : "' + that.model.get('colors')['bright_yellow'] + '"\n';
lsResult += ' // --- special colors ---\n';
lsResult += ' "background" : "' + that.model.get('colors')['background'] + '",\n';
lsResult += ' "foreground" : "' + that.model.get('colors')['foreground'] + '",\n';
lsResult += ' },\n\n';
lsResult += '// ------------------------------------------------------------------------------\n';
lsResult += '// --- end of terminal colors section -------------------------------------------\n';
Expand Down

0 comments on commit fda8e9d

Please sign in to comment.