Duplicate Constants in Color List
Closed this issue · 1 comments
LingamYoni commented
Line 68 in 6f2fdf8
I noticed that some constants in the color list are duplicated:
// custom gray colors
clDarkGray32 = TColor32($FF505050);
clDarkGrey32 = TColor32($FF505050);
// clGray32 = TColor32($FF808080);
// clSilver32 = TColor32($FFC0C0C0);
clLiteGray32 = TColor32($FFD3D3D3);
clLiteGrey32 = TColor32($FFD3D3D3);
clPaleGray32 = TColor32($FFE0E0E0);
clPaleGrey32 = TColor32($FFE0E0E0);
clDarkBtn32 = TColor32($FFE8E8E8);
clBtnFace32 = TColor32($FFF0F0F0);
clLiteBtn32 = TColor32($FFF8F8F8);
Specifically, the following pairs are duplicates:
clDarkGray32
andclDarkGrey32
clLiteGray32
andclLiteGrey32
clPaleGray32
andclPaleGrey32
Could you please confirm if this duplication is intentional? If not, it would be helpful to remove the duplicates to avoid confusion.
AngusJohnson commented
It's intentional, and accommodates both English and American spellings.