master-co / css

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

💖 Made color config syntax consistent with class syntax #264

Closed 1aron closed 1 year ago

1aron commented 1 year ago

Description

Motivation

Expect

export default {
    colors: {
        primary: '#000',
        primary: 'rgb(0,0,0)',
-       primary: 'rgb(0 0 0)',
+       primary: 'rgb(0|0|0)',
-       primary: 'rgb(0 0 0/.5)',
+       primary: 'rgb(0|0|0/.5)',
        primary: 'rgba(0,0,0,.5)',
        primary: 'blue/.5'
     }
}

https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Functions#color_functions

1aron commented 1 year ago

🎉 Released in https://github.com/master-co/css/releases/tag/v2.0.0-beta.162