Last active
July 5, 2024 17:48
Revisions
-
Matt Decuir revised this gist
Nov 6, 2021 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -38,7 +38,8 @@ const mapping = { 'terminal.ansiMagenta': 'Ansi 5 Color', 'terminal.ansiRed': 'Ansi 1 Color', 'terminal.ansiWhite': 'Ansi 7 Color', 'terminal.ansiYellow': 'Ansi 3 Color', 'terminal.selectionBackground':'Selection Color' } const componentToHex = c => { -
Matt Decuir revised this gist
Apr 12, 2020 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ // This script takes an iTerm Color Profile as an argument and translates it for use with Visual Studio Code's built-in terminal. // // usage: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json] // @@ -7,9 +7,9 @@ // 2) Go to Preferences -> Profiles -> Colors // 3) Other Actions -> Save Profile as JSON // // To generate the applicable color settings and use them in VS Code: // 1) Run this script from the command line: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json] // 2) In VS Code, Go to Preferences -> Settings -> Workbench -> Appearance -> Color Customizations -> Edit in settings.json // 3) Copy and paste the output from the script under `"workbench.colorCustomizations"` // // This script was adapted by Matt Decuir on 2020-04-12. -
Matt Decuir revised this gist
Apr 12, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,7 @@ // 3) Other Actions -> Save Profile as JSON // // To generate the appropriate color customizations and use them in vscode: // 1) Run this script from the command line: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json] // 2) In vs Code, Go to Preferences -> Settings -> Workbench -> Appearance -> Color Customizations -> Edit in settings.json // 3) Copy and paste the output from the script under `"workbench.colorCustomizations"` // -
Matt Decuir revised this gist
Apr 12, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,7 +13,7 @@ // 3) Copy and paste the output from the script under `"workbench.colorCustomizations"` // // This script was adapted by Matt Decuir on 2020-04-12. // Original source: https://gist.github.com/2xAA/bd01638dc9ca46c590fda06c4ef0cc5a // const fs = require('fs'); -
Matt Decuir revised this gist
Apr 12, 2020 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ // This script takes an iTerm Color Profile export as an argument and translates it for use in vscode. // // usage: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json] // @@ -12,8 +12,8 @@ // 2) In vs Code, Go to Preferences -> Settings -> Workbench -> Appearance -> Color Customizations -> Edit in settings.json // 3) Copy and paste the output from the script under `"workbench.colorCustomizations"` // // This script was adapted by Matt Decuir on 2020-04-12. // source: https://gist.github.com/2xAA/bd01638dc9ca46c590fda06c4ef0cc5a // const fs = require('fs'); -
Matt Decuir revised this gist
Apr 12, 2020 . No changes.There are no files selected for viewing
-
Matt Decuir created this gist
Apr 12, 2020 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,74 @@ // This script takes an iTerm Color Profile export as an argument and translates it to vscode's workbench.colorCustomizations. // // usage: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json] // // To export an iTerm Color Profile: // 1) Open iTerm // 2) Go to Preferences -> Profiles -> Colors // 3) Other Actions -> Save Profile as JSON // // To generate the appropriate color customizations and use them in vscode: // 1) run this script from the command line: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json] // 2) In vs Code, Go to Preferences -> Settings -> Workbench -> Appearance -> Color Customizations -> Edit in settings.json // 3) Copy and paste the output from the script under `"workbench.colorCustomizations"` // // This script was adapted from: https://gist.github.com/2xAA/bd01638dc9ca46c590fda06c4ef0cc5a // by Matt Decuir on 2020-04-12 // const fs = require('fs'); const mapping = { 'terminal.background': 'Background Color', 'terminal.foreground': 'Foreground Color', 'terminalCursor.background': 'Cursor Text Color', 'terminalCursor.foreground': 'Cursor Color', 'terminal.ansiBlack': 'Ansi 0 Color', 'terminal.ansiBlue': 'Ansi 4 Color', 'terminal.ansiBrightBlack': 'Ansi 8 Color', 'terminal.ansiBrightBlue': 'Ansi 12 Color', 'terminal.ansiBrightCyan': 'Ansi 14 Color', 'terminal.ansiBrightGreen': 'Ansi 10 Color', 'terminal.ansiBrightMagenta': 'Ansi 13 Color', 'terminal.ansiBrightRed': 'Ansi 9 Color', 'terminal.ansiBrightWhite': 'Ansi 15 Color', 'terminal.ansiBrightYellow': 'Ansi 11 Color', 'terminal.ansiCyan': 'Ansi 6 Color', 'terminal.ansiGreen': 'Ansi 2 Color', 'terminal.ansiMagenta': 'Ansi 5 Color', 'terminal.ansiRed': 'Ansi 1 Color', 'terminal.ansiWhite': 'Ansi 7 Color', 'terminal.ansiYellow': 'Ansi 3 Color' } const componentToHex = c => { const hex = c.toString(16) return hex.length === 1 ? `0${hex}` : hex } if (process.argv.length === 3) { try { const fileName = process.argv[2] const rawData = fs.readFileSync(fileName) const jsonData = JSON.parse(rawData) const convertedValues = Object.keys(mapping).reduce((results, vsCodeKey) => { const itermKey = mapping[vsCodeKey] const values = jsonData[itermKey] const red = componentToHex(Math.round(values['Red Component'] * 255)) const green = componentToHex(Math.round(values['Green Component'] * 255)) const blue = componentToHex(Math.round(values['Blue Component'] * 255)) const vsCodeValue = `#${red}${green}${blue}` results[vsCodeKey] = vsCodeValue return results }, {}) console.log(JSON.stringify(convertedValues, null, 2)) } catch (error) { console.log(error) } } else { console.log('Please pass a json file as an argument.') console.log('usage: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json]`') }