🍨 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: 'blue-50',
darkMode: 'gray-700'
}
});
Or compose them dynamically at runtime! 🏃♂️
import { atoms } from './sprinkles.css.ts';
const flexDirection = Math.random() > 0.5 ? 'column' : 'row';
document.write(`
<section class="${atoms({ display: 'flex', flexDirection })}">
...
</section>
`);
🔥 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 a sprinkles.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 = {
'none': 0,
'small': '4px',
'medium': '8px',
'large': '16px',
};
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',
'gray-700': '#374151',
'gray-800': '#1f2937',
'gray-900': '#111827',
};
const colorStyles = createAtomicStyles({
conditions: {
lightMode: {},
darkMode: { '@media': '(prefers-color-scheme: dark)' }
},
defaultCondition: 'lightMode',
properties: {
color: colors,
background: colors,
}
});
export const atoms = createAtomsFn(responsiveStyles, colorStyles);
export type Atoms = Parameters<typeof atoms>[0];
🎉 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 './sprinkles.css.ts';
export const container = atoms({
display: 'flex',
paddingX: 'small',
flexDirection: {
mobile: 'column',
desktop: 'row',
},
background: {
lightMode: 'blue-50',
darkMode: 'gray-700',
}
});
If you want, you can even use your atoms
function at runtime! 🏃♂️
import { atoms } from './sprinkles.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!
Within .css.ts
files, combine with any custom styles using vanilla-extract’s composeStyles
function.
import { style, composeStyles } from '@vanilla-extract/css';
import { atoms } from './sprinkles.css.ts';
export const container = composeStyles(
atoms({
display: 'flex',
padding: 'small'
}),
style({
':hover': {
outline: '2px solid currentColor'
}
})
);
Sprinkles uses vanilla-extract’s composeStyles
function internally, which means that atomic styles can be treated as if they were a single class within vanilla-extract selectors.
import { globalStyle } from '@vanilla-extract/css';
import { atoms } from './sprinkles.css.ts';
export const container = atoms({
padding: 'small',
});
globalStyle(`${container} *`, {
boxSizing: 'border-box'
});
⚛️ 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: '4px',
medium: '8px',
large: '16px'
};
const colors = {
blue50: '#eff6ff',
blue100: '#dbeafe',
blue200: '#bfdbfe',
};
const responsiveStyles = 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(
responsiveStyles,
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.
For simple mappings (i.e. valid CSS values), values can be provided as an array.
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const responsiveStyles = 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 responsiveStyles = 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 responsiveStyles = createAtomicStyles({
properties: {
gap: vars.space,
}
});
For more complicated styles, values can even be entire style objects. This works especially well when combined with CSS Variables.
💡 Styles are created in the order that they were defined in your config. Properties that are less specific should be higher in the list.
import { createVar } from '@vanilla-extract/css';
import { createAtomicStyles } from '@vanilla-extract/sprinkles';
const alpha = createVar();
const responsiveStyles = createAtomicStyles({
properties: {
background: {
red: {
vars: { [alpha]: '1' },
background: `rgba(255, 0, 0, ${alpha})`
},
},
backgroundOpacity: {
1: { vars: { [alpha]: '1' } },
0.1: { vars: { [alpha]: '0.1' } },
},
}
});
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.
💡 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 responsiveStyles = 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 responsiveStyles = 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 responsiveStyles = 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 responsiveStyles = 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 responsiveStyles = 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 responsiveStyles = createAtomicStyles({ });
const unresponsiveStyles = createAtomicStyles({ });
const colorStyles = createAtomicStyles({ });
export const atoms = createAtomsFn(
responsiveStyles,
unresponsiveStyles,
colorStyles
);
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.
Utilities
createMapValueFn
Creates a function for mapping over conditional values.
💡 This is useful for converting high-level prop values to low-level atoms, e.g. converting left/right to flex-start/end.
This function should be created and exported from your sprinkles.css.ts
file using the conditions from your atomic styles.
You can name the generated function whatever you like, typically based on the name of your conditions.
import {
createAtomicStyles,
createAtomsFn,
createMapValueFn
} from '@vanilla-extract/sprinkles';
const responsiveStyles = createAtomicStyles({ });
export const atoms = createAtomsFn(responsiveStyles);
export const mapResponsiveValue = createMapValueFn(responsiveStyles);
You can then import the generated function in your app code.
import { mapResponsiveValue } from './sprinkles.css.ts';
const alignToFlexAlign = {
left: 'flex-start',
center: 'center',
right: 'flex-end',
stretch: 'stretch'
} as const;
mapResponsiveValue('left', (value) => alignToFlexAlign[value]);
mapResponsiveValue({
mobile: 'center',
desktop: 'left'
} as const, (value) => alignToFlexAlign[value]);
mapResponsiveValue([
'center',
null,
'left'
] as const, (value) => alignToFlexAlign[value]);
💡 You can generate a custom conditional value type with the ConditionalValue type.
createNormalizeValueFn
Creates a function for normalizing conditional values into a consistent object stucture. Any primitive values or responsive arrays will be converted to conditional objects.
This function should be created and exported from your sprinkles.css.ts
file using the conditions from your atomic styles.
💡 You can name the generated function whatever you like, typically based on the name of your conditions.
import {
createAtomicStyles,
createAtomsFn,
createNormalizeValueFn
} from '@vanilla-extract/sprinkles';
const responsiveStyles = createAtomicStyles({ });
export const atoms = createAtomsFn(responsiveStyles);
export const normalizeResponsiveValue = createNormalizeValueFn(responsiveStyles);
You can then import the generated function in your app code.
import { normalizeResponsiveValue } from './sprinkles.css.ts';
normalizeResponsiveValue('block');
normalizeResponsiveValue(['none', null, 'block' ]);
normalizeResponsiveValue({ mobile: 'none', desktop: 'block' });
Types
ConditionalValue
Creates a custom conditional value type.
💡 This is useful for typing high-level prop values that are mapped to low-level atoms, e.g. supporting left/right prop values that map to flex-start/end.
This type should be created and exported from your sprinkles.css.ts
file using the conditions from your atomic styles.
You can name the generated type whatever you like, typically based on the name of your conditions.
import { createAtomicStyles, ConditionalValue } from '@vanilla-extract/sprinkles';
const responsiveStyles = createAtomicStyles({ });
export type ResponsiveValue<Value extends string | number> = ConditionalValue<typeof responsiveStyles, Value>;
You can then import the generated type in your app code.
import { ResponsiveValue } from './sprinkles.css.ts';
type ResponsiveAlign = ResponsiveValue<'left' | 'center' | 'right'>;
const a: ResponsiveAlign = 'left';
const b: ResponsiveAlign = { mobile: 'center', desktop: 'left' };
const c: ResponsiveAlign = ['center', null, 'left'];
RequiredConditionalValue
Same as ConditionalValue except the default condition is required. For example, if your default condition was 'mobile'
, then a conditional value of { desktop: '...' }
would be a type error.
import { createAtomicStyles, RequiredConditionalValue } from '@vanilla-extract/sprinkles';
const responsiveStyles = createAtomicStyles({
defaultCondition: 'mobile',
});
export type RequiredResponsiveValue<Value extends string | number> = RequiredConditionalValue<typeof responsiveStyles, Value>;
You can then import the generated type in your app code.
import { RequiredResponsiveValue } from './sprinkles.css.ts';
type ResponsiveAlign = RequiredResponsiveValue<'left' | 'center' | 'right'>;
const a: ResponsiveAlign = 'left';
const b: ResponsiveAlign = { mobile: 'center', desktop: 'left' };
const c: ResponsiveAlign = ['center', null, 'left'];
const d: ResponsiveAlign = [null, 'center'];
const e: ResponsiveAlign = { desktop: 'center' };
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.