CSS Colour Help - ValerioLyndon/MAL-Public-List-Designs GitHub Wiki

You are here: Home > CSS Colour Help


If you are unacquainted with how to use CSS colours, I would recommend Googling "color picker". There is one built into Google and many other websites with the same functionality. You can also find a more advanced colour picker that supports transparency here: Link.

Any value from colour pickers will work fine as long as it is a valid CSS colour. Below is a list of all valid types. Using a colour picker that provides any of these or experimenting with these values yourself should result in success.

  • Named colours i.e. "blue" or "red", full list here(https://www.w3schools.com/colors/colors_names.asp)
  • RGB values, i.e rgb(25, 51, 68) or rgba(25, 51, 68, 0.3)
  • Hex values, i.e. #3689ff, #38f, or #3689ffa0
  • HSL values, i.e. hsl(281, 75%, 90%) or hsla(281, 75%, 90%, 0.7)
  • HWB values, i.e. hwb(12 50% 0%)