m3-tailwind-typography
v0.0.3-alpha2
Published
Atomic CSS for Material Design 3 (M3) design tokens. Now with custom fonts.
Downloads
5
Readme
M3 Tokens
This package provide design tokens as classes.
For color, it use material-color-utilities internally, so all you need to do is providing a source color, then palettes are automatically generated.
Install
npm i -D m3-tokens
Setup
// tailwind.config.js
plugins: [
require('m3-tokens/tailwind')({
source: '#6750a4' // Source color for your theme.
})
]
Usage
<button class="px-6 py-2.5 bg-surface1 typescale-label-large text-primary shadow-1 rounded-full">
Button
</button>