https://traekwells.com/
background-color: hsl(from var(--color-primary-dark) h s 10%);
needs to be:
background-color: hsl(from hsl(var(--color-primary-dark)) h s 10%);
Makes a lot of sense but felt weird to do
background-color: hsl(from var(--color-primary-dark) h s 10%);
needs to be:
background-color: hsl(from hsl(var(--color-primary-dark)) h s 10%);
Makes a lot of sense but felt weird to do