master-co / css

The CSS Language and Framework
https://css.master.co
MIT License
1.82k stars 41 forks source link

💖 Study whether color variables can be optionally omitted `$()` #360

Open 1aron opened 5 months ago

1aron commented 5 months ago

Context

No response

Current

export default {
    variables: {
        primary: { '@light': '$(yellow-40)', '@dark': '$(yellow-50)' }
    }
}

Expected

export default {
    variables: {
        primary: { '@light': 'yellow-40', '@dark': 'yellow-50' }
    }
}