I need to make color of my Status Bar (it is a TPanel
) change (Lighten or Darken) automatically according to user's current System Specifications which is displayed in my wpInfoBefore
Wizard Page.
I like to have two functions which can do this correctly by inputting a TColor
as Value. But , I tried many times to write those functions by reading posts like this , even using RGB
function, but with no success.
For Example, If I need to darken or lighten the given TColor
, I may need to use functions like shown below:
var
RecommendedStatusColor: TColor;
function LightenColor(Colour: TColor, Percentage: Integer): TColor;
begin
...
end;
function DarkenColor(Colour: TColor, Percentage: Integer): TColor;
begin
...
end;
RecommendedStatusColor := $00D000;
if ... then
StatusBar.Color := LightenColor(RecommendedStatusColor, 75);
//Lighten given color by 75%
if ... then
StatusBar.Color := DarkenColor(RecommendedStatusColor, 50);
//Darken given color by 50%
Output should be the modified (Lightened or Darkened) TColor.
Thanks in Advance.
You have to convert the color to HSL or HSV and change the lightness (L) or value (V) and convert back to RGB.
The following code uses the HSL (L = lightness).
Usage:
References:
ColorRGBToHLS
+ColorHLSToRGB
– VCL source codeMin
+Max
– Inno Setup get Min and Max Integer values in Pascal ScriptColorToRGB
– Converting Inno Setup WizardForm.Color to RGBLightenColor
– Lighten colors programmatically with Delphi