Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

add a new Color scheme to the Rad Studio

Tags:

ide

delphi

It's possible modify or change a color scheme (Color SpeedSetting) in the Rad-Studio?

There is an entry in the Windows Registry? or must edit some file?

Thanks in advance.

alt text

like image 478
RRUZ Avatar asked Oct 17 '25 21:10

RRUZ


1 Answers

It doesn't look easy at first glance.

I found the following under then HKCU path:

\HKCU\Software\CodeGear\ETM\12.0\Color

with the following sub-keys

  • List item
  • Classic
  • Default
  • Ocean
  • Twilight

Each key has what appear to be color constants but there doesn't appear to be enough constants to make it the right section.

The list of values under each key:

  • Auto_TranslatedItemColor
  • EditBackgroundColor
  • EditForegroundColor IsOEM
  • Non_editBackgroundColor
  • Non_editForegroundColor
  • SelectionBackgroundColor
  • SelectionForegroundColor
  • TranslatedItemColor
  • UntranslatedItemColor UnusedItemColor

That's all I've got, with out spending a lot more time from the looks of it.

It's probably stored in a BPL as a Opentools API object.

like image 68
Vivian Mills Avatar answered Oct 19 '25 13:10

Vivian Mills