Choosing colors from RGB Color Space

I'm trying to set up solarized syntax highlight on the code editor. Is there a way to chose the colors by RGB parameters? Currently the color editor is very poor.

Thanks.
 
If the custom color selector does not work for you, you can set the RGB values in the preference file:

%APPDATA%\PLSQL Developer\Preferences\\default.ini

In this file you can find the following lines:

KeywordsColor=
CommentColor=
StringsColor=
NumbersColor=
SymbolsColor=
CustomColor=

The is the decimal representation of the RGB value: 65536 * + 256 * + , where , and are a value from 0 .. 255.

 
Back
Top