svgl/tailwind.config.cjs

21 lines
414 B
JavaScript
Raw Normal View History

2023-03-15 19:28:22 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
2023-03-20 18:30:32 +08:00
dark: '#161616',
light: '#f5f5f5'
2023-03-15 19:28:22 +08:00
},
fontFamily: {
sans: ['General-Sans', 'sans-serif']
},
fontSize: {
mini: '14px'
}
}
},
2023-12-14 07:40:47 +08:00
plugins: [require('@tailwindcss/typography')]
2023-03-15 19:28:22 +08:00
};