diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..18476522 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio +*.iml +.idea/ +*.ipr +*.iws +.idea_modules/ \ No newline at end of file diff --git a/PhpStorm-Solarized/README.md b/PhpStorm-Solarized/README.md new file mode 100644 index 00000000..f5fa361b --- /dev/null +++ b/PhpStorm-Solarized/README.md @@ -0,0 +1,58 @@ +PhpStorm-Solarized +==================== +Solarized Colorscheme for Jetbrains PhpStorm 5.0 + +*** + +Original Solarized color scheme developed by Ethan Schoonover + +Adapted for Jetbrains PhpStorm by: +Koen Lageveen + +See the [Solarized homepage](http://ethanschoonover.com/solarized) for screenshots, +details and colorscheme versions for Vim, Mutt, popular terminal emulators and +other applications. + +Installation +------------ + +### Option 1: Manual installation + +1. Copy `Solarized Dark.xml` and `Solarized Light.xml` to your PhpStorm preferences: + - On Linux it is in `/home//.WebIde0/config/colors`. + - On Mac it is in `~/Library/Preferences/WebIde0/colors`. + - On Windows it is in `C:\Users\\.WebIde0\config\colors`. + + Replace `WebIde0` with the Version of PhpStorm you use, e.g. WebIde70 for PhpStorm 7 + +2. Restart PhpStorm + +3. Go to `Preferences | Editor | Colors & Fonts` and select one of the new color themes. + +### Option 2: Import settings + +1. Clone (or download) this repository. +2. Go to `File | Import Settings` select the directory and click `Choose`. +3. Check `Color schemes` and press `Ok`. +4. Restart PhpStorm. +5. 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. It is currently set to Consolas. +You should probably modify these in `Preferences | Editor | Colors & Fonts | Font` after adding the color schemes. + +Screenshots +----------------- +Screenshots of PhpStorm Solarized in action: + +![Dark](https://raw.github.com/braver/PhpStorm-Solarized/master/img/dark-php-small.png) + +![Light](https://raw.github.com/braver/PhpStorm-Solarized/master/img/light-php-small.png) + +* [Dark - HTML](https://raw.github.com/braver/PhpStorm-Solarized/master/img/dark-html.png) +* [Dark - JS](https://raw.github.com/braver/PhpStorm-Solarized/master/img/dark-js.png) +* [Dark - PHP](https://raw.github.com/braver/PhpStorm-Solarized/master/img/dark-php.png) +* [Light - HTML](https://raw.github.com/braver/PhpStorm-Solarized/master/img/light-html.png) +* [Light - JS](https://raw.github.com/braver/PhpStorm-Solarized/master/img/light-js.png) +* [Light - PHP](https://raw.github.com/braver/PhpStorm-Solarized/master/img/light-php.png) diff --git a/PhpStorm-Solarized/Solarized Dark.xml b/PhpStorm-Solarized/Solarized Dark.xml new file mode 100644 index 00000000..2e6be062 --- /dev/null +++ b/PhpStorm-Solarized/Solarized Dark.xml @@ -0,0 +1,2747 @@ + + + + diff --git a/PhpStorm-Solarized/Solarized Light.xml b/PhpStorm-Solarized/Solarized Light.xml new file mode 100644 index 00000000..6adc4c71 --- /dev/null +++ b/PhpStorm-Solarized/Solarized Light.xml @@ -0,0 +1,2747 @@ + + + + diff --git a/PhpStorm-Solarized/buildjar.sh b/PhpStorm-Solarized/buildjar.sh new file mode 100755 index 00000000..f3b2ed11 --- /dev/null +++ b/PhpStorm-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/PhpStorm-Solarized/img/dark-html.png b/PhpStorm-Solarized/img/dark-html.png new file mode 100644 index 00000000..08e179b3 Binary files /dev/null and b/PhpStorm-Solarized/img/dark-html.png differ diff --git a/PhpStorm-Solarized/img/dark-js.png b/PhpStorm-Solarized/img/dark-js.png new file mode 100644 index 00000000..b7c178e0 Binary files /dev/null and b/PhpStorm-Solarized/img/dark-js.png differ diff --git a/PhpStorm-Solarized/img/dark-php-small.png b/PhpStorm-Solarized/img/dark-php-small.png new file mode 100644 index 00000000..ed01ff0a Binary files /dev/null and b/PhpStorm-Solarized/img/dark-php-small.png differ diff --git a/PhpStorm-Solarized/img/dark-php.png b/PhpStorm-Solarized/img/dark-php.png new file mode 100644 index 00000000..3cd1ee7d Binary files /dev/null and b/PhpStorm-Solarized/img/dark-php.png differ diff --git a/PhpStorm-Solarized/img/light-html.png b/PhpStorm-Solarized/img/light-html.png new file mode 100644 index 00000000..548d09f7 Binary files /dev/null and b/PhpStorm-Solarized/img/light-html.png differ diff --git a/PhpStorm-Solarized/img/light-js.png b/PhpStorm-Solarized/img/light-js.png new file mode 100644 index 00000000..6f449bce Binary files /dev/null and b/PhpStorm-Solarized/img/light-js.png differ diff --git a/PhpStorm-Solarized/img/light-php-small.png b/PhpStorm-Solarized/img/light-php-small.png new file mode 100644 index 00000000..a6c72ee7 Binary files /dev/null and b/PhpStorm-Solarized/img/light-php-small.png differ diff --git a/PhpStorm-Solarized/img/light-php.png b/PhpStorm-Solarized/img/light-php.png new file mode 100644 index 00000000..13b4ee38 Binary files /dev/null and b/PhpStorm-Solarized/img/light-php.png differ diff --git a/PhpStorm-Solarized/settings.jar b/PhpStorm-Solarized/settings.jar new file mode 100644 index 00000000..90fe051d Binary files /dev/null and b/PhpStorm-Solarized/settings.jar differ diff --git a/README.md b/README.md index d18ee945..b7fcb9e8 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,3 @@ ---- -title: Solarized -description: Precision colors for machines and people -author: Ethan Schoonover -tags: test, testing, test123 -colors: light yellow -created: 2011 Mar 15 -modified: 2011 Apr 16 - ---- - Solarized ========= @@ -64,6 +53,7 @@ Currently available in formats for (cf [screenshots](#screenshots) below): * **Visual Studio** courtesy of [David Thibault](http://www.leddt.com) ([@leddt](http://twitter.com/leddt)) in the main repo and in a [standalone repository][Visual Studio Repository] +* **PhpStorm** by [Koen Lageveen][PhpStorm Repository] * **Xcode** work in progress ports are available for [Xcode 3] and [Xcode 4] and will be pulled into the main Solarized project soon. @@ -411,3 +401,4 @@ background. [me]: http://ethanschoonover.com/colophon [changelog]: http://ethanschoonover.com/solarized/CHANGELOG [Vim README]: http://ethanschoonover.com/solarized/vim-colors-solarized +[PhpStorm Repository]: https://github.com/braver/PhpStorm-Solarized