Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @cmoiss

    Posted

    Hi, how are you?

    I think you can use variables in CSS to store your colors and make your code a bit more user-friendly. It also helps you avoid getting lost in hex or hcl codes.

    Instead:

    background-color: #fff;
    color: #7b879d;
    

    Try this:

    :root {
      --baby-blue: hsl(212, 45%, 89%);
      --blueish-gray: hsl(216, 15%, 48%);
      --navy-blue: hsl(218, 44%, 22%);
    }
    
    [...]
    
    background-color: var(--baby-blue);
    color: var(--navy-blue);
    

    Here is an article from W3Schools that teaches you how to use variables in CSS.

    I hope this helped, even if a little (I'm still starting here at FrontEnd Mentor).

    Happy studying! :)

    0