-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.ts
43 lines (37 loc) · 1.09 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { join } from "path";
import type { Config } from "tailwindcss";
// 1. Import the Skeleton plugin
import { skeleton } from "@skeletonlabs/tw-plugin";
const config = {
// 2. Opt for dark mode to be handled via the class method
darkMode: "selector",
content: [
"./src/**/*.{html,js,svelte,ts}",
// 3. Append the path to the Skeleton package
join(require.resolve("@skeletonlabs/skeleton"), "../**/*.{html,js,svelte,ts}"),
],
theme: {
extend: {},
},
plugins: [
// 4. Append the Skeleton plugin (after other plugins)
require("@tailwindcss/typography"),
skeleton({
themes: {
preset: [
"skeleton",
"wintry",
"modern",
"rocket",
"seafoam",
"vintage",
"sahara",
"hamlindigo",
"gold-nouveau",
"crimson",
],
},
}),
],
} satisfies Config;
export default config;