Package Exports
- iterm-colors
- iterm-colors/bundle.json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (iterm-colors) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
iterm-colors
Converts iTerm2's color schemes (plist files) to a JSON array useable in term.js and others
Install
npm install -g iterm-colorsTheme screenshots
blazer

chalkboard

dark_pastel

desert

espresso

github

grass

homebrew

hurtado

idletoes

kibble

man_page

monokai_soda

neopolitan

novel

ocean

pro

red_sands

seafoam_pastel

solarized_darcula

solarized_dark

solarized_light

symfonic

terminal_basic

vaughn

zenburn

Example
Binary
$ iterm-colors ~/Downloads/Monokai.itermcolors
["#615d4c","#e53865","#a8ff60","#ddcf69","#6bcce6","#ef8930","#9879f9","#eeeeee","#615d4c","#e53865","#a8ff60","#ddcf69","#6bcce6","#ef8930","#9879f9","#eeeeee"]
$Library
// Core fs module
var fs = require('fs');
// iterm-colors module/function
var icolors = require('iterm-colors');
// ansiColors will be an array of hex colors for each ainsi color
// in the .itermcolors file
var ansiColors = icolors(fs.readFileSync('SOME_FILE_PATH.itermcolors'));
Library (bundle access)
// iterm-colors module/function
var bundle = require('iterm-colors/bundle.json');
// Github's theme
bundle.github;
// Monokai theme
bundle.monokai_soda;
...Disclaimer
The original iTerm2 colorschemes (and screenshots) were sourced from here : https://github.com/mbadolato/iTerm2-Color-Schemes.