29 lines
646 B
JavaScript
29 lines
646 B
JavaScript
const { fontFamily } = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
content: ['./components/**/*.{js,ts,jsx,tsx,css}', './pages/**/*.{js,ts,jsx,tsx,css}', './styles/**/*.{js,ts,jsx,tsx,css}'],
|
|
darkMode: 'class',
|
|
important: true,
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['var(--font-inter)', ...fontFamily.sans],
|
|
},
|
|
spacing: {
|
|
120: '30rem',
|
|
},
|
|
height: { inherit: 'inherit' },
|
|
colors: {
|
|
green: {
|
|
400: '#E9F5E6',
|
|
500: '#d0f7e2',
|
|
800: '#20BC69',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|