Loading request...
Users request support for Stitches CSS variable fallbacks that are compatible with the theme map. A syntax example is provided: `$$color(red)` for a default value and `$$color` without.
**Is your feature request related to a problem? Please describe.** Add support for stitches CSS variable fallbacks that should work with theme map **Describe the solution you'd like** ```ts css({ // Stitches css var with default value color: "$$color(red)", // Stitches css var without default value backgroundColor: "$$color" }); ``` **Describe alternatives you've considered** I could use raw CSS vars but then it would not work with the theme map.