22 lines
465 B
JavaScript
22 lines
465 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["templates/**/*.html"], // <-- MUST BE CORRECT
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: '#121418',
|
|
surface: '#1e2127',
|
|
border: '#2a2d34',
|
|
primary: '#4f8cff',
|
|
text: '#e4e4e7',
|
|
muted: '#a0a0ad',
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('flowbite/plugin'),
|
|
require('@tailwindcss/typography')
|
|
],
|
|
}
|