31 lines
772 B
JavaScript
31 lines
772 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./packages/base/Resources/Private/**/*.html",
|
|
"./packages/base/Resources/Private/**/*.js",
|
|
"./packages/base/ContentBlocks/ContentElements/**/*.html",
|
|
"./public/typo3conf/ext/*/Resources/Private/**/*.html",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', ...defaultTheme.fontFamily.sans],
|
|
hajime: ['"Hajime Sans"', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#233600',
|
|
dark: '#1C2B00',
|
|
light: '#4E5E32',
|
|
},
|
|
yellow: '#F5AE07',
|
|
'light-green': '#F4F6EC',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|