When it comes to my CSS, I like to use .scss to make as many variables as possible. It's easy to create a variable for one color, like $primary-color
. From there, I want to work with different shades of that color, which I can easily pinpoint using Photoshop or any other color picker tool. With the darken($primary-color, 10)
function in .scss, I can generate a color and then adjust it until it matches the shade I'm looking for.
So, my question is: how do I determine where exactly #DAE5F0
falls in relation to #1D3B6C
?