I’m not sure if there is a setting I’m missing but I was wondering if it is possible to change the alpha values in the hex color picker with the string.
The desired behavior is that a string like (#) a0a0a0a0 creates a color with all RGBA values 160.
I think you’d have to change the C++ source code to do this:
For anyone interested, the really important thing I found in my tinkering was to use strtoul to get an unsigned long, not strtol.
I was looking at this because it’d also be possible to support parsing RGB565 (a 4 digit hex code) and RGB444 (a 3 digit hex code) if you had different clauses based on the string’s length instead of always padding it out to 6.