pages-landing-page/tailwind.config.ts
Sam Therapy fa4831709a
Use SvelteKit instead of stealing Codeberg
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2024-03-15 23:25:07 +01:00

35 lines
679 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';
import { frothNoire } from './froth-noire-skeleton';
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
}
],
custom: [
frothNoire
]
}
})
]
} satisfies Config;