🍨 Sprinkles
Zero-runtime atomic CSS framework for vanilla-extract.
Configure a custom set of utility classes, then compose them — either statically at build time, or dynamically at runtime — via a functional TypeScript API. All this without the usual style generation overhead of CSS-in-JS.
Basically, it’s like building your own zero-runtime, type-safe version of Tailwind, Styled System, etc.
Compose atoms statically at build time.
export const className = atoms({
display: 'flex',
paddingX: 'small',
flexDirection: {
mobile: 'column',
desktop: 'row'
},
background: {
lightMode: 'blue50',
darkMode: 'gray700'
}
});
Or compose them dynamically at runtime! 🏃♂️
import { atoms } from './atoms.css.ts';
const flexDirection = Math.random() > 0.5 ? 'column' : 'row';
document.write(`
<section class="${atoms({ display: 'flex', flexDirection })}">
...
</section>
`);
🚧 Please note, this is an alpha release.
🔥 Zero-runtime CSS-in-TypeScript with all styles generated at build time via vanilla-extract.
🛠 Create your own custom set of atomic classes with declarative config.
💪 Type-safe functional API for accessing atoms.
🏃♂️ Compose atoms statically in .css.ts
files, or dynamically at runtime (<0.5KB Gzip)
🎨 Generate theme-based scales with CSS Variables using vanilla-extract themes.
✍️ Configure shorthands for common property combinations, e.g. paddingX
/ paddingY
.
🚦 Conditional atoms to target media/feature queries and selectors.
✨ Scope conditions to individual properties.
🖥 Try it out for yourself in CodeSandbox.
Setup
💡 Before starting, ensure you've set up vanilla-extract.
Install Sprinkles.
$ npm install @vanilla-extract/sprinkles
Create an atoms.css.ts
file, then configure and export your atoms
function.
💡 This is just an example! Feel free to customise properties, values and conditions to match your requirements.
import { createAtomicStyles, createAtomsFn } from '@vanilla-extract/sprinkles';
const space = {
0: '0',
4: '4px',
8: '8px',
12: '12px',
};
const responsiveStyles = createAtomicStyles({
conditions: {
mobile: {},
tablet: { '@media': 'screen and (min-width: 768px)' },
desktop: { '@media': 'screen and (min-width: 1024px)' }
},
defaultCondition: 'mobile',
properties: {
display: ['none', 'flex', 'block', 'inline'],
flexDirection: ['row', 'column'],
justifyContent: ['stretch', 'flex-start', 'center', 'flex-end', 'space-around', 'space-between'],
alignItems: ['stretch', 'flex-start', 'center', 'flex-end'],
paddingTop: space,
paddingBottom: space,
paddingLeft: space,
paddingRight: space,
},
shorthands: {
padding: ['paddingTop', 'paddingBottom', 'paddingLeft', 'paddingRight'],
paddingX: ['paddingLeft', 'paddingRight'],
paddingY: ['paddingTop', 'paddingBottom'],
placeItems: ['justifyContent', 'alignItems'],
}
});
const colors = {
'blue-50': '#eff6ff',
'blue-100': '#dbeafe',
'blue-200': '#bfdbfe',
};
const colorStyles = createAtomicStyles({
conditions: {
lightMode: {},
darkMode: { '@media': '(prefers-color-scheme: dark)' }
},
defaultCondition: 'lightMode',
properties: {
color: colors,
background: colors,
}
});
export const atoms = createAtomsFn(responsiveStyles, colorStyles);
🎉 That's it — you’re ready to go!
Usage
You can now use your atoms
function in .css.ts
files for zero-runtime usage.
import { atoms } from './atoms.css.ts';
export const container = atoms({
display: 'flex',
paddingX: 'small',
flexDirection: {
mobile: 'column',
desktop: 'row',
},
background: {
lightMode: 'blue50',
darkMode: 'gray700',
}
});
Combine with any custom styles using vanilla-extract’s composeStyles
function.
import { style, composeStyles } from '@vanilla-extract/css';
import { atoms } from './atoms.css.ts';
export const container = composeStyles(
atoms({
display: 'flex',
paddingX: 'small'
}),
style({
':hover': {
outline: '2px solid currentColor'
}
})
);
If you want, you can even use your atoms
function at runtime! 🏃♂️
import { atoms } from './atoms.css.ts';
const flexDirection = Math.random() > 0.5 ? 'column' : 'row';
document.write(`
<section class="${atoms({ display: 'flex', flexDirection })}">
...
</section>
`);
💡 Although you don’t need to use this library at runtime, it’s designed to be as small and performant as possible. The runtime is only used to look up pre-existing class names. All styles are still generated at build time!
⚛️ Using React? Turn your atoms into a <Box>
component with 🍰 Dessert Box.
API
createAtomicStyles
Configures a collection of utility classes with properties, conditions and shorthands.
If you need to scope different conditions to different properties (e.g. some properties support breakpoints, some support light mode and dark mode, some are unconditional), you can provide as many collections of atomic styles to createAtomsFn
as you like.
import { createAtomicStyles, createAtomsFn } from '@vanilla-extract/sprinkles';
const space = {
none: 0,
small: 4,
medium: 8,
large: 16
};
const colors = {
blue50: '#eff6ff',
blue100: '#dbeafe',
blue200: '#bfdbfe',
};
const layoutStyles = createAtomicStyles({
conditions: {
mobile: {},
tablet: { '@media': 'screen and (min-width: 768px)' },
desktop: { '@media': 'screen and (min-width: 1024px)' },
},
defaultCondition: 'mobile',
properties: {
display: ['none', 'block', 'flex'],
flexDirection: ['row', 'column'],
padding: space,
}
});
const colorStyles = createAtomicStyles({
conditions: {
lightMode: { '@media': '(prefers-color-scheme: light)' },
darkMode: { '@media': '(prefers-color-scheme: dark)' }
},
defaultCondition: false,
properties: {
color: colors,
background: colors
},
});
export const atoms = createAtomsFn(
layoutStyles,
colorStyles
);
💡 If you want a good color palette to work with, you might want to consider importing tailwindcss/colors.
properties
Configures which properties and values should be available. Properties must be valid CSS properties.
For simple mappings (i.e. valid CSS values), values can be provided as an array.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const layoutStyles = createAtomicStyles({
properties: {
display: ['none', 'block', 'flex'],
flexDirection: ['row', 'column'],
alignItems: ['stretch', 'flex-start', 'center', 'flex-end'],
justifyContent: ['stretch', 'flex-start', 'center', 'flex-end'],
}
});
For semantic mappings (e.g. space scales, color palettes), values can be provided as an object.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const layoutStyles = createAtomicStyles({
properties: {
gap: {
none: 0,
small: 4,
medium: 8,
large: 16
},
}
});
You can also use vanilla-extract themes to configure themed atoms.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
import { vars } from './vars.css.ts';
const layoutStyles = createAtomicStyles({
properties: {
gap: vars.space,
}
});
shorthands
Maps custom shorthand properties to multiple underlying CSS properties. This is useful for mapping values like padding
/paddingX
/paddingY
to their underlying longhand values.
Note that shorthands are evaluated in the order that they were defined in your config. Shorthands that are less specific should be higher in the list, e.g. padding
should come before paddingX
/paddingY
.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
import { vars } from './vars.css.ts';
const layoutStyles = createAtomicStyles({
properties: {
paddingTop: vars.space,
paddingBottom: vars.space,
paddingLeft: vars.space,
paddingRight: vars.space
},
shorthands: {
padding: ['paddingTop', 'paddingBottom', 'paddingLeft', 'paddingRight'],
paddingX: ['paddingLeft', 'paddingRight'],
paddingY: ['paddingTop', 'paddingBottom']
}
});
conditions
Allows you to create atomic classes for a set of media/feature queries.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const layoutStyles = createAtomicStyles({
conditions: {
mobile: {},
tablet: { '@media': 'screen and (min-width: 768px)' },
desktop: { '@media': 'screen and (min-width: 1024px)' }
},
defaultCondition: 'mobile',
});
Classes can also be scoped to selectors.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const styles = createAtomicStyles({
conditions: {
default: {},
hover: { selector: '&:hover' },
focus: { selector: '&:focus' }
},
defaultCondition: 'default',
});
defaultCondition
Defines which condition should be used when a non-conditional value is requested, e.g. atoms({ display: 'flex' })
.
💡 When using mobile-first responsive conditions, this should be your lowest breakpoint.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const layoutStyles = createAtomicStyles({
conditions: {
mobile: {},
tablet: { '@media': 'screen and (min-width: 768px)' },
desktop: { '@media': 'screen and (min-width: 1024px)' }
},
defaultCondition: 'mobile',
});
You can also set defaultCondition
to false
. This forces you to be explicit about which conditions you’re targeting.
💡 This is useful when your conditions are mutually exclusive.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const layoutStyles = createAtomicStyles({
conditions: {
lightMode: { '@media': '(prefers-color-scheme: light)' },
darkMode: { '@media': '(prefers-color-scheme: dark)' }
},
defaultCondition: false,
});
responsiveArray
Optionally enables responsive array notation (e.g. ['column', 'row']
) by defining the order of conditions.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const layoutStyles = createAtomicStyles({
conditions: {
mobile: {},
tablet: { '@media': 'screen and (min-width: 768px)' },
desktop: { '@media': 'screen and (min-width: 1024px)' }
},
defaultCondition: 'mobile',
responsiveArray: ['mobile', 'tablet', 'desktop'],
});
createAtomsFn
Turns your atomic styles into a type-safe function for accessing atoms. You can provide as many atomic style collections as you like.
import { createAtomicStyles, createAtomsFn } from '@vanilla-extract/sprinkles';
const layoutStyles = createAtomicStyles({
});
const colorStyles = createAtomicStyles({
});
const typographyStyles = createAtomicStyles({
});
export const atoms = createAtomsFn(
layoutStyles,
colorStyles,
typographyStyles
);
The atoms function also exposes a static properties
key that lets you check whether a given property can be handled by the function.
atoms.properties.has('paddingX');
💡 This is useful when building a Box component with atoms available at the top level (e.g. <Box padding="small">
) since you’ll need some way to filter atom props from non-atom props.
Thanks
- Styled System for inspiring our approach to responsive props.
- Tailwind for teaching us to think utility-first.
- SEEK for giving us the space to do interesting work.
License
MIT.