Note: Only system colors will be themed, e.g. clWindow, clWindowText, clBtnFace, clGrayText, etc. Controls with fixed colors such as clBlue, clBlack, $$00FCFCFC will not be themed.
// Compare the following... IEGlobalSettings().EnableTheming := True; ImageEnView1.Background := clBtnFace; // Background will be a themed color ImageEnView1.Background := clBlue; // Background will be blue
IEGlobalSettings().EnableTheming := False; ImageEnView1.Background := clBtnFace; // Background will be clBtnFace (gray) ImageEnView1.Background := clBlue; // Background will be blue