n0mbers/tailwind.config.js

13 lines
293 B
JavaScript
Raw Normal View History

2022-02-07 22:14:31 +01:00
module.exports = {
2022-02-15 08:46:15 +01:00
darkMode: 'class',
2022-02-07 22:14:31 +01:00
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
fontFamily: {
2022-02-09 21:27:26 +01:00
sans: ['Manrope', 'ui-sans-serif', 'system-ui', 'apple-system'],
2022-02-20 12:26:57 +01:00
mono: ['Jetbrains Mono', 'monospace'],
2022-02-09 21:27:26 +01:00
},
2022-02-07 22:14:31 +01:00
},
2022-02-09 21:27:26 +01:00
plugins: [],
2022-02-07 22:14:31 +01:00
}