master-co / css

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

🐞 Linking a variable with an alpha alias to an existing variable will crash #356

Open 1aron opened 5 months ago

1aron commented 5 months ago

Description

export default {
    variables: {
        line: {
            neutral: {
                '@light': '$(slate-60)',
                '@dark': '$(gray-30)'
            },
            light: '$(line-neutral)/.2',
            lighter: '$(line-neutral)/.15',
            lightest: '$(line-neutral)/.1'
        }
    }
}