If anybody wants to use the Solarized color scheme with chrome-hterm,
I've written a simple script to set it up for you:
https://github.com/benley/solarized-termcolor-osc4/blob/master/solarized.sh
You'll want to run that in your login script, and you will need to
manually set the terminal's default foreground and background colors
via the javascript console, as well as disabling bold-weighted fonts
like so:
// Disable bold.
term_.prefs_.set('enable-bold', false)
// Use this for Solarized Dark
term_.prefs_.set('background-color', "#002B36")
term_.prefs_.set('foreground-color', #839496")
// Use this for Solarized Light
term_.prefs_.set('background-color', "#fdf6e3")
term_.prefs_.set('foreground-color', "#657b83")
// And of course you can adjust the font-family, font-size, font-
smoothing values to your liking. I use this:
term_.prefs_.set('font-family', 'Menlo')
term_.prefs_.set('font-size', 12)
term_.prefs_.set('font-smoothing', 'subpixel-antialiased')
This works with solarized dircolors and various other things, but for
whatever reason not with console vim yet. Still working on that; it
probably has to do with vim being aware of 256 color mode, or perhaps
reseting the color values to their defaults when it starts. I'll post
an update when I figure that out.
Enjoy!