@shiv-pratap04Submitted 3 months ago
P
LinhUK
@LinhUKAll comments
- @LinhUKPosted 3 months ago
This looks great. From looking at other solutions, I've learned that using CSS variables are a great way to enhance flexibility and maintainability of stylesheets. E.g., :root { /* Background Colours */ --light-blue: hsl(212, 45%, 89%); } body { background-color: var(--light-blue); }
https://www.w3schools.com/css/css3_variables.asp
0