mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
25 lines
592 B
JavaScript
25 lines
592 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./_includes/**/*.{html,njk,md}', './content/**/*.{html,njk,md}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
daisyui: {
|
|
themes: [
|
|
'dark',
|
|
{
|
|
// Custom theme definitions
|
|
dark: {
|
|
...require('daisyui/src/theming/themes')['[data-theme=dark]'],
|
|
primary: '#1eb854',
|
|
secondary: '#1db990',
|
|
'base-content': '#ffffff',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
safelist: ['no-underline', 'text-xs'],
|
|
|
|
plugins: [require('@tailwindcss/typography'), require('daisyui')],
|
|
}
|