How to add new theme in PhpStorm 10.0.1 - phpstorm

Note: Answers from this question did not work for me.
I am new to PhpStorm, and I'm currently using the version 10.0.1.
I'm trying to add a new theme Dark Peacock because it best suits my preference. I did my research and already tried placing the files in these folders:
C:/Users/USERNAME/.PhpStorm2016.1/colors
C:/Users/USERNAME/.PhpStorm10.0.1/colors
C:/Users/USERNAME/.PhpStorm 10.0.1/colors
C:/Users/USERNAME/.WebIde100/config/colors
C:/Users/USERNAME/~/.PhpStorm10.0.1/colors
C:/Users/USERNAME/~/.PhpStorm 10.0.1/colors
... but nothing seems to work for me. The new theme just doesn't show up in File->Settings->->Appearance & Behavior->Appearance->Theme Dropdown.
Any other idea out there?

It seems that I have confused "theme" with "color scheme".
The theme is the one that changes the general look of the application, that is, the background color of borders, sidebars, menus, and maybe more (of which I haven't discovered yet). This was not really what I wanted to change.
The color scheme is the one that changes the text editor's background and text colors. And this is what I was trying to change.
Color schemes do not show up in
File->Settings->->Appearance & Behavior->Appearance->Theme Dropdown
because they are in
File->Settings->->Editor->Colors & Fonts->Scheme Dropdown
NOTE: The exact location for Dark Peacock.icls that made this work is:
C:/Users/USERNAME/.WebIde100/config/colors
The colors folder does not exist, so I had to create it.

Related

Theme color on Framework7

I have already looked at several more sites so far I have not been able to figure out how to make the color in the upper part of the app, where is the clock and the battery, using framework7, the same orange color in the upper right app that is in the image below. Does anyone know how to do this?
Translated from Portuguese to English - Google Translate
Are you talking about the status bar? If so, in this page you might see something relevant for you:
"In PhoneGap apps Status bar text color is always black by default. It can't be changed from Framework7, but can be customized with PhoneGap plugins like cordova-plugin-statusbar"
It has nothing to do with Framework7 my friend, it is from the OS, you can check the answers here to find the best way to do it:
How to change the status bar color in android

Xcode project navigator background color

When a window is active in xcode project navigator background color blue, and when two or more it is default. How to make that it was always defaulted?
http://imgur.com/a/B2VFr
There's two ways to change colors in Xcode.
First is the "Fonts & Colors" tab in Xcode's preferences, which look like this:
That doesn't change the color of the files in the Project Navigator, though. To do that, in System Preferences there's a tab helpfully named "General", you can change the settings for your system in it. Here's what it looks like for me now:
I chose "Graphite", and that changes selected files in the Project Navigator to have gray surrounding the filenames.
So, the problem was on the system side. The wallpapers color mixed with color of IDE. I reduced transparency. So that was it.

PhpStorm : Darcula theme shows white background

I'm not sure what has happened, but this morning when I opened PhpStorm the background of the editor is now white even though the selected theme is still Darcula - any idea? It was all good last night - but now it's all white.
You are looking in the wrong place. The background color (and the code colors) is not determined by the theme, but by the scheme.
You can choose the scheme by going to Editor > Colors & Fonts:
You also have a preview of how the scheme will look like on every file type:
You have to set "scheme" in "editor->colors and fonts" to darcula.
There are several other dark editor schemes you could try.
Go to Preferences -> Colors & Fonts -> General -> Default Text -> Background Color and uncheck the inheritance box and select your color.
I had the same problem when I installed the new PHPStorm V10.

pending add image asp.net mvc 5 visual studio

I get a "Pending add" message when I hover over the "+" sign in front of an image (whether in .png, .gif, or .jpg format) that I've just added to a project. Even though Visual Studio shows a thumbnail of the image when I hover over its name in the Solution Explorer, it is not showing up as the background of the body of my page. (When I alternately assign a background color in that same body section, that color DOES show up.) Don't know why it would matter, but I added this image by right-clicking my new Images folder and adding an existing item.
I've already gone through answers involving Pending changes, and none of those are helpful here. Any suggestions for getting this image to stop "Pending add" and be added already, so that it will render, please? Thank you.
Commit your changes, that's all.
In other words, the icons on the left are the status of source control. So, it is saying that this is a new item that you added into the project. So, you now need to add it to the source control.
When you do your commit, it will detect the new file and you will have option of adding it at that time.
If the image was excluded you would have to include it to be shown. As you figured out, this doesn't mean it's not included in project.
The "Pending add" info indicates that it's not yet "Checked in" (when sharing a project).
If someone gets confused with this, it's probably the usage of wrong path or something else.
I had this problem. I deleted the image files from Solution Explorer and re-added them, and the images were immediately checked in.

How to have the Sublime Text console showing color instead of the color codes

I have a build system output in the console. However it is showing color code instead of the actual colorized text.
[37;46;1mTest file: static/tests/casperjs/login/test.js
How can I apply a color theme to the console output?
Thanks!
Unfortunately sublime doesn't support this. I ended up writing a plugin that parses the output and converts it into a colored version (for a subset of colors, ones we use in our testing framework).
If you would like to look into that, or if anyone stumbles upon this in future here are some tips..
I detect output in the plugin with an on_modified event listener and a view
with no name (view.name()). This does not uniquely identify the output pane
so you'll have to do a bit more than that, I found no other easy way (unless
you want to hook into your build plugin and act directly on the view it generates).
To make the color changes, I remove the color codes (view.erase()) and add color to the
regions marked by those codes with view.add_regions(). The colors I add are
ones I manually insert into a custom theme, as again there seems to be no
other way. Also, for some reason it seems you can't add a color with the
exact background of the active theme (it inverts it or something), so I set
the color's backgrounds to something just different.
As you can tell, it's a hacky, ad hoc solution, otherwise I would release it on Github.
You can also check out SublimeREPL, it does console text coloring