Reputation: 346
How do you install custom color schemes in PhpStorm 2016.1 on Mac OSX?
Previous versions you'd place an xml file in a directory like ~/user/webide900/colors
and PhpStorm would pick it up and make it an option for you in the settings to switch to one of those themes.
This site where I used to get themes appears to still be up to date but their instructions for install are for old versions.
PhpStorm docs don't make any mention of installing custom scheme files.
Upvotes: 12
Views: 33019
Reputation: 26054
Firstly, download a theme from https://github.com/sdvoynikov/color-themes
In PHPStorm, select File > Import Settings and select the downloaded theme file. After the IDE restarted the theme should automatically be loaded for you.
Upvotes: 3
Reputation:
Update for Ubuntu/Linux versions in 2020:
your user
/.config/JetBrains/PhpStormversion number
/colors
.Example:
Mine was in /home/enigmapr0ject/.config/Jetbrains/PhpStorm2020.3, created a new folder called colors and dropped my themes in there. Worked perfectly.
Upvotes: 0
Reputation: 139
PhpStorm 2016.1 on Windows - How to install color theme
Go to folder:
C:\Users\USERNAME\.PhpStorm2016.1\config\
Create a new folder: colors
Copy the XML file of your favourite theme-color in the colors
folder.
Open PhpStorm, go to: File->Settings
then choose Editor->Colors & Fonts
and your new theme-color appears in the select list.
Upvotes: 13
Reputation: 531
To install a custom color scheme you need to create a folder named colors in ~/Library/Preferences/PhpStorm2016.1/
. In here you drop the .icls
file. Hope this helps.
Upvotes: 34