It's Just JavaScript
Variables
const brandColor = 'plum';
// usage:
<nav>
background: { brandColor };
</nav>Detached Rulesets
const fontMedium = `
font-family: 'Open Sans', sans-serif;
font-weight: 600;
font-size: 2.1rem;
`;
// usage:
<h1>
{ fontMedium }
</h1>Pre-processor Mixins
Themes
Server-side
Note on Support
Last updated