that’s wrong cause
- n(hex)=00 00 00…ff ff ff or
- n(dec)=000 000 000…255 255 255
so your colour is defined as n(hex)=‘00 ff 00’.
that’s wrong cause
Leading “0” are not required. Only significant HEXits (don’t know if this is a word, but it means a single character representing a value from 0 to 15) are required. Assigning
FF00, or 00FF00, or N’0’sFF00 produces the same results.
John