24 lines
579 B
JavaScript
24 lines
579 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./templates/**/*.html"],
|
||
|
darkMode: true,
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
primary: '#FF6363',
|
||
|
secondary: {
|
||
|
100: '#E2E2D5',
|
||
|
200: '#888883'
|
||
|
}
|
||
|
},
|
||
|
fontFamily: {
|
||
|
body: ['Nunito']
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
variants: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|