Emphasis active panel in sublime text 3? - sublimetext

I use a touch pad with "doubke-tap to click" (which often fails). I'ld like to be able to style sublime text 3 to emphasise the active panel.
The selection opacity of the inactive panels does drop ~10%, but I couldn't find a colour in my theme to control this. So possibly the opacity is done programatically?
Any help would be appreciated :)

Inside Color Scheme there are files with tmTheme extension for every theme. In those files you can change (or add) the properties that controls inactive selection and active selection colors.
I think you are looking for the inactiveSelectionForeground key. As a good example you can look at the Monokai Bright theme that has many properties that other themes doesn't seems to use.

Related

VS – how to change code completion pop-up foreground

How can one change foreground (text color) of code completion box items while Fonts and Colors do not allow this?
If you want this change you can count on that it’s little bit tricky such it will affect other (more) items. So foreground will be changed in other undesired places.
Steps:
Install Color Theme Editor for Visual Studio.
In theme editor use Show All Elements toggle.
Find Environment ⟶ CommandBarTextActive.
Change color as you wish.

Changing CLion's background color

I'd like to change the general background color of CLion (that is, outside of where you write code), but I have been unable to find a solution neither in the IDE itself nor online.
However, changing these colors should be possible, as switching the color theme does change them.
Here is an image of what I mean, I've marked the respective areas I would like to change the color of with a bright pink circled x:
Any help on where I could find these settings would be much appreciated.
EDIT: I already know where to change Fonts, text colors and the like, but I am looking specifically for the marked areas, changes for which do not appear under any of the Color Scheme Options.
You cannot customize the colors of the main interface except for choosing the Default and Darcula themes in Appearance and Behavior - Appearance. What your and the other answer's screenshot shows are the EDITOR color scheme settings.
You can set a background image for the whole IDE in general in that settings tab, though. Make it completely opaque, the color you like, and that might do it.
To configure colors and fonts
Press Ctrl+Alt+S or choose File | Settings (for Windows and Linux) or CLion | Preferences (for macOS) from the main menu, and then go to Editor | Font.
Select the desired scheme from the Scheme name drop-down list.
Under the Color Scheme node, define the font families used in the editor and in the console. When you open the Font page, or Console Fonts under the Color Scheme node, CLion displays the Editor Font area where you can configure the primary and secondary fonts, their size and line spacing.
Under the Color Scheme node, open the corresponding pages to configure specific color preferences for the supported languages and CLion components.
To navigate to the relevant Colors & Fonts settings for the symbol at the caret
Call Help | Find Action from the main menu (or press Ctrl+Shift+A) and choose Jump to Colors and Fonts:
Explore the relevant section of the Colors & Fonts settings for the symbol under the caret:
If you want to know more about configurations : Configuring Colors and Fonts

What's the name of the bar below the Property grid in VS?

I'm using the Visual Studio Color Theme Editor extension to help darken up VS2010, found a nice theme that I like however I've got one big problem with it.
On the Property sheet, at the bottom where it says the name of the property and a sort description this theme I'm using is impossible to read; Black on a dark grey background. Unfortunately, I don't know what this specific segment of the Property window is called to change it.
You can not change the text color with the extension.
To figure that out, copy FFFFFF, select all line in the theme editor configuration pane (with Shift), press Ctrl+V (yes, you can do that, pretty neat !) and hit apply : everything that can be themed will then appear white. The text however, will stay black.
You can hopefully change the background color : It's called ToolWindowBackground. It will affect all tool windows of course. There's no specific item for this window in particular.

How to tweak a Sublime Text 2 theme?

I love the Sublime Text's Monokai theme. Except for one thing: it is difficult to distinguish the active tab from inactive. So I want to make the inactive tab a bit lighter.
I've looked through Monokai.tmTheme file and don't really know what to change (or even if it's the right file).
So, how do I change the background color of the Inactive Tab?
I found the answer. Go to C:\Users\{user}\AppData\Roaming\Sublime Text 2\Packages\Theme - Default\Default.sublime-theme
Go to line 529 and mess with the last number in the tint_modifier key, until your find the color pleasing.

How to change out-of-focus text selection color in Xcode?

Okay, I'll bite.
I've got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible.
When I am doing a project search and iterating through the results, however, the results list stays in focus and the found text remains out of focus, using a different background color. This color is extremely hard to detect, especially when the text is embedded in a larger code block and the view is shifting around as it scrolls to the results.
Here's an example:
Left side is in focus (just normal selection), right side is out of focus (during project find)
Often it takes a few seconds to find where the heck the selected text is.
Unless I'm just missing it, Xcode seems to offer no way to change this particular selection color. Interestingly, it also doesn't seem to follow the selection color from the Appearance panel.
Does anyone know a way to change this color or force it to be more visible, short of changing my entire color scheme around?
Use this Xcode plugin:
http://github.com/tjw/XcodeSelectionColorFix
Instructions for using it are here: http://github.com/tjw/XcodeSelectionColorFix/blob/master/README.markdown
You can manually edit the theme file, which might allow a different selection color. If I recall (not on my dev machine), personal themes are in ~/Library/Application Support/Xcode/(should be intuitive from here/can't remember)
You can edit them in Property List Editor, if I remember right. The Xcode preferences don't expose all of the options available in the theme file.

Resources