Remove the white outline box from PhpStorm editor - phpstorm

PhpStorm recently updated and reset all my editor settings, I can not find the setting though to get rid of the white selection box when you click on a variable.

You need to modify Identifier under caret color settings in Settings | Editor | Color Scheme | General |Code - in Material UI color schemes, it has bordered effect enabled

Related

PhpStorm - How to change default zoom level

The default zoom level is way too high as you can see in the following screenshot, how can I change it?
I already searched the whole settings but found nothing.
Editor font size can be changed in Preferences | Editor | Colors&Fonts | Font (don't forget to press Save as button to save the default schema as a custom one - predefined schemes can't be modified).
Note also that you can zoom the font in editor. To zoom text using keyboard, you need to assign preferred shortcuts to Increase font size, Decrease font size and Reset font size actions in Preferences | Keymap | Editor Actions; to do the same using mouse, enable Change font size (Zoom) with Ctrl+Mouse Wheel option in Preferences | Editor | General and use Ctrl+mouse wheel to zoom

PhpStorm input dialog color

Some dialog windows of PhpStorm are using a black color to text and over a black background sometimes is hard to read.
Can I change the color of these inputs using some settings?
EDIT: The behaviour can be simulated selecting the theme Darcula and the scheme Default
"EDIT: The behaviour can be simulated selecting the theme Darcula and the scheme Default"
It is expected behavior in your case -- you are trying to use dark GUI Theme (Darcula) with light Color Schema (Editor area colors) which meant to work with light GUI Themes.
But yes -- such color is possible to change.
Settings/Preferences
Editor | Colors & Fonts | General
Text | Default Text
Change/Assign desired color to Foreground styling option
Changing colors:
Actual result:
P.S.
I've used Darcula GUI Theme + Default Color Schema.
It's possible that you may need to restart IDE for other combinations.
Resetting the settings maybe possibly fix the problem
https://www.jetbrains.com/help/phpstorm/2016.1/project-and-ide-settings.html

How to change inspections column background color in PhpStorm?

Code inspections are highlighted on the right-side of the editor as red/yellow lines. I want to change the background color of the entire column (not the color of individual inspections).
In previous versions of PhpStorm (with the Darcula theme), the column was a grey color. In PhpStorm 10, it is now transparent. Is there a way to change the background color?
Not really. That color is part of the IDE Theme which is not user configurable.
But you can show some background there:
Help | Find Action...
Look for Registry there (exact match)
Once got inside Registry window look for editor.transparent.scrollbar and uncheck it (user modified values will be displayed in bold .. so make sure you have changed it, not just "Click and that's enough")

How to find a specific html color code?

I have buttons with a color for each state :
state enable : #007BC2
state disable : #428bca (pale version of enable color)
This css is a file I have picked from a template.
Now my client wants for the button this enable color : #4B0082.
I want to find the color code for the pale version of #4B0082 (for the disable state).
Is there a css tool on the web to find this color or do I need to browse a color picker to find the "pale" version of this enable color?
Thanks for your answers.
I suggest using chrome or firefox. Here you can right-click any element on your webpage. For your example: right click the button and click 'inspect element'. You can now see the developer tools window. Here you can see all the css or html attributes for your button.
So take a look at the background-color attribute and click the color thumbnail. A color picker becomes visible (see screenshot) . You can now choose the color and see a live preview of that color in your web page.
You can use Colorzilla (chrome add-on) to pick color from page and to find its pale version.It also contain option of generating css gradient and even get history of your picked color
You will find colorzilla on chrome webstore

PhpStorm - change size and color of changed lines

When editing file that is under version control in right side scroller PhpStorm have small colored info about which lines have been added, modified, deleted.
PhpStorm version: 6.0.2
This small info about line changes is too small for me.
How can I make it bigger or change color so I can spot it better?
Well ... the colors can be configured at Settings | Editor | Colors & Fonts | General
Added lines
Modified lines
But the screenshot you are showing .. it looks more like Difference Viewer rather than Editor itself (since in Editor such info is shown in editor gutter area (next to line numbers) which is on the left side -- opposite side to where scrollbar is).
Therefore you may be looking for Settings | Editor | Colors & Fonts | Diff instead (screenshot is too small for me to tell anything more).