diff --git a/intellij-colors-solarized/README.md b/intellij-colors-solarized/README.md new file mode 100644 index 0000000..619f9b3 --- /dev/null +++ b/intellij-colors-solarized/README.md @@ -0,0 +1,65 @@ +Solarized Colorscheme for IntelliJ IDEA +======================================= + +Original Solarized color scheme developed by Ethan Schoonover + +Adapted for IntelliJ IDEA by: +Adam Vandenberg +Johan Kaving + +Visit the [Solarized homepage] +------------------------------ + +See the [Solarized homepage] for screenshots, +details and colorscheme versions for Vim, Mutt, popular terminal emulators and +other applications. + +Downloads +--------- + +If you have come across this colorscheme via the [IntelliJ-only repository] on +github see the link above to the Solarized homepage or visit the main [Solarized repository]. + +The [IntelliJ-only repository] is kept in sync with the main [Solarized repository]. +Issues, bug reports, changelogs are centralized at the main [Solarized repository]. + +[Solarized homepage]: http://ethanschoonover.com/solarized +[Solarized repository]: https://github.com/altercation/solarized +[IntelliJ-only repository]: https://github.com/jkaving/intellij-colors-solarized + +Installation +------------ + +### Option 1: Install using "Import Settings..." + +1. Go to `File | Import Settings...` and specify the `intellij-colors-solarized` directory. + Clik `OK` in the dialog that appears. + +2. Restart IntelliJ IDEA + +3. Go to `Preferences | Editor | Colors & Fonts` and select one of the new +color themes. + +### Option 2: Manual installation + +1. Copy `Solarized Dark.xml` and `Solarized Light.xml` to your IntelliJ IDEA preferences +color directory. +On Mac OS X this is typically located in `~/Library/Preferences/IntelliJIdea10/colors` or `~/Library/Preferences/IntelliJIdea10CE/colors` (for the Community Edition). +On Windows it is in `Documents and Settings//.IntelliJIdea10/config/colors`. + +2. Restart IntelliJ IDEA + +3. Go to `Preferences | Editor | Colors & Fonts` and select one of the new +color themes. + +Note About Fonts +----------------- +Unfortunately, font settings are included in the color settings files. +You should probably modify these in `Preferences | Editor | Colors & Fonts | Font` +after adding the color schemes to your IntelliJ IDEA installation. + +Note About Committing Changes +----------------------------- +If you want to commit updates to the XML color scheme files, make sure to run the `buildjar.sh` script before committing to generate +an updated `settings.jar` file as well. +*The script has been tested on OS X, on other operating systems you're on your own.* \ No newline at end of file diff --git a/intellij-colors-solarized/Solarized Dark.xml b/intellij-colors-solarized/Solarized Dark.xml new file mode 100644 index 0000000..7e2f28f --- /dev/null +++ b/intellij-colors-solarized/Solarized Dark.xml @@ -0,0 +1,609 @@ + + + + diff --git a/intellij-colors-solarized/Solarized Light.xml b/intellij-colors-solarized/Solarized Light.xml new file mode 100644 index 0000000..3026c86 --- /dev/null +++ b/intellij-colors-solarized/Solarized Light.xml @@ -0,0 +1,619 @@ + + + + diff --git a/intellij-colors-solarized/buildjar.sh b/intellij-colors-solarized/buildjar.sh new file mode 100755 index 0000000..f3b2ed1 --- /dev/null +++ b/intellij-colors-solarized/buildjar.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +mkdir colors +cp Solarized\ Light.xml colors +cp Solarized\ Dark.xml colors +touch IntelliJ\ IDEA\ Global\ Settings + +jar cfM settings.jar IntelliJ\ IDEA\ Global\ Settings colors + +rm -r colors +rm IntelliJ\ IDEA\ Global\ Settings \ No newline at end of file diff --git a/intellij-colors-solarized/settings.jar b/intellij-colors-solarized/settings.jar new file mode 100644 index 0000000..158fa04 Binary files /dev/null and b/intellij-colors-solarized/settings.jar differ