@Anonymous ,
I use option 2 now (this post is an old one) - I set a Record Variable at App OnStart and then set control properties accordingly (yes it takes a while to do, but the whole App can then be changed with a few setting changes.
Set(
gblBase,
ColorFade(
RGBA(
9,
33,
98,
1
),
-30%
)
);
Set(
gblTheme,
{
Fill: gblBase,
Hover: ColorFade(
gblBase,
94%
),
Shade: ColorFade(
gblBase,
90%
),
Press: ColorFade(
gblBase,
30%
),
SubH: ColorFade(
gblBase,
75%
),
TSize: 9,
LSize: 10,
TFont: Font.'Segoe UI',
LFont: Font.'Open Sans Condensed',
LWeight: FontWeight.Bold
}
);