home.social

#relativecolour — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #relativecolour, aggregated by home.social.

  1. Do you want to add alpha transparency to an opaque hex colour with pure CSS? You can do something like:

    .red-60 {
    color: rgb(from r g b / .6);
    }

    This uses the rgb() function to set 60% opacity to the hex value of red.

    The letters r g b (note the spaces between) are a representation of the red green and blue values of the hex colour. You can think of them as some sort of variable.