I have a hex color, e.g. #F4F8FB (or rgb(244, 248, 251)) that I want converted into an as-transparent-as-possible rgba color (when displayed over white). Make sense? I’m looking for...
  • May 30, 2022
  • 0 Comments
I know you can write … background-color: #ff0000; … if you want something that is red. And you can write … background-color: rgba(255, 0, 0, 0.5); … if you...
  • May 22, 2022
  • 0 Comments