Re: [csswg-drafts] [css-env] Adding custom env() variables (#2627)

Maybe something like this:
```css
@constants {
    --my-unalterable-var: my_Value_That_Is_Selector_Context_Agnostic;
    --breakpoint-s: 640px;
    --body-bg: blue;
}

@media screen and (min-width: var(--breakpoint-s, 300px)) {
    body {
        --body-bg: red; /* no effect, because --body-bg is already a constant (then it's unalterable) */
        background-color: var(--body-bg, green); /* blue, because --body-bg is simply already defined */
    }
}
```

I'm going to
1 - Search in tickets if something similar exists.
2 - Post a ticket if not.

-- 
GitHub Notification of comment by flavi1
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2627#issuecomment-624678754 using your GitHub account

Received on Wednesday, 6 May 2020 14:21:31 UTC