Question on FluentAccentColor in config.psd1

When I specify the color hex value 0xA30C33, which is a dark red (crimson), it shows up being very light in the PSAppDeployToolkit dialog boxes on installations. Is there a way to address this? Thanks.

I'm assuming you are talking about FluentAccentColor in config.psd1
BTW: which version of PSADT are you using?

You should know that the first two characters for transparency: 00 = 0%, FF = 100%
In your case, it's A3 in the color hex value of 0xA30C33

FluentAccentColor is also 8 hex digits: 0x12345678. you are missing 2 digits!!!!

This is valid:
FluentAccentColor = 0xFF0078D7

What you put in might be interpreted to:
FluentAccentColor = 0xA30C3300

You can get a color number from an image using online tools like Image Color Picker

Thanks. This is what I actually needed: 0xFF9E2339

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.