All packages have now been updated. This includes the skeletonlabs packages. Everything seems to be working. (Except for some unrelated known bugs. Why did the badge search stop working (AGAIN)?)
This commit is contained in:
37
tailwind.config.ts
Normal file
37
tailwind.config.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import type { Config } from 'tailwindcss';
|
||||
import { skeleton } from '@skeletonlabs/skeleton';
|
||||
import forms from '@tailwindcss/forms';
|
||||
import typography from '@tailwindcss/typography';
|
||||
|
||||
const config = {
|
||||
darkMode: 'class',
|
||||
content: [
|
||||
'./src/**/*.{html,js,svelte,ts}',
|
||||
'./node_modules/@skeletonlabs/skeleton/**/*.{html,js,svelte,ts}'
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [
|
||||
forms,
|
||||
typography,
|
||||
skeleton({
|
||||
themes: {
|
||||
preset: [
|
||||
"cerberus",
|
||||
"concord",
|
||||
"crimson",
|
||||
"hamlindigo",
|
||||
"modern",
|
||||
"nouveau",
|
||||
"rocket",
|
||||
"terminus",
|
||||
"vintage",
|
||||
"wintry"
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
} satisfies Config;
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user