mirror of
https://github.com/wrabit/django-cotton.git
synced 2025-07-08 01:55:01 +00:00
26 lines
No EOL
654 B
JavaScript
26 lines
No EOL
654 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
"**/*.{html,js,py}",
|
|
"!./**/node_modules/**",
|
|
"!**/node_modules/**",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'sans': ['Plus Jakarta Sans', ...defaultTheme.fontFamily.sans],
|
|
'mono': ['Roboto Mono', ...defaultTheme.fontFamily.mono],
|
|
},
|
|
spacing: {
|
|
'8xl': '96rem',
|
|
},
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
// ...
|
|
],
|
|
} |