Skip to content

Instantly share code, notes, and snippets.

@o-t-w
Last active December 14, 2021 16:23
Show Gist options
  • Save o-t-w/d7dc85fbd6c117e0fdecad459243f0e7 to your computer and use it in GitHub Desktop.
Save o-t-w/d7dc85fbd6c117e0fdecad459243f0e7 to your computer and use it in GitHub Desktop.
module.exports = {
mode: "jit",
purge: ["./app/**/*.{ts,tsx}"],
darkMode: "media", // or 'media' or 'class'
theme: {
fontFamily: {
sans: ['ui-sans-serif', 'system-ui']
},
colors: {
transparent: 'transparent',
current: 'currentColor',
pink: 'var(--pink)',
},
spacing: {
0.5: '2px',
1: '4px',
2: '8px',
3: '12px',
4: '16px',
5: '24px',
6: '32px',
7: '48px',
8: '72px'
},
extend: {
maxWidth: {
'readable': '560px'
}
}
},
variants: {},
plugins: []
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment