css icon indicating copy to clipboard operation
css copied to clipboard

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

Open 1aron opened this issue 1 year ago • 0 comments

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' }
    }
}

1aron avatar Jun 16 '24 09:06 1aron