@copper beacon
I am getting the error $channels must be a space-separated list.
How do I correct this? I have two lines in _variables.scss like so.
$accent: 124, 58, 237;
$accent-gradient: linear-gradient(45deg, rgb($accent), #da62c4 30%, white 60%);
I'm trying to use these variables in Card.astro like so:
---
import '../styles/_variables.scss';
---
<!--html -->
<style lang="scss">
@use '../styles/_variables.scss' as v;
body {
color: $v.accent-gradient;
}
</style>