spock/tailwind.config.ts
nomadics9 32a0ec3e77 init
2024-06-13 00:30:13 +03:00

35 lines
718 B
TypeScript

import { join } from 'path'
import type { Config } from 'tailwindcss'
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import { skeleton } from '@skeletonlabs/tw-plugin'
export default {
darkMode: 'class',
content: ['./src/**/*.{html,js,svelte,ts}', join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')],
theme: {
extend: {},
},
plugins: [
forms,
typography,
skeleton({
themes: {
preset: [
{
name: 'skeleton',
enhancements: true,
},
{
name: 'wintry',
enhancements: true,
},
{
name: 'gold-nouveau',
enhancements: true,
},
],
},
}),
],
} satisfies Config;