After migrating my app from WPF to HTML, CSS, and JavaScript, I noticed a discrepancy in color representation.
Despite using the same hex value, the HTML color appears lighter than in WPF. See the comparison image here: https://i.sstatic.net/vB7rR.png
In my CSS code, I've defined the color as follows:
.TextTest {
color: #0066CC;
}
How can I ensure that the color in HTML matches the intensity of the color in WPF?