-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
41 lines (39 loc) · 1.11 KB
/
tailwind.config.ts
File metadata and controls
41 lines (39 loc) · 1.11 KB
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
import { join } from 'path';
import type { Config } from 'tailwindcss';
import { skeleton } from '@skeletonlabs/tw-plugin';
import forms from '@tailwindcss/forms';
import { standardTheme } from './themes/standard';
const config = {
darkMode: 'class',
content: [
'./src/**/*.{html,js,svelte,ts}',
join(
require.resolve('@skeletonlabs/skeleton'),
'../**/*.{html,js,svelte,ts}'
)
],
theme: {
extend: {}
},
plugins: [
forms,
skeleton({
themes: {
custom: [standardTheme],
preset: [
{ name: 'modern', enhancements: true },
{ name: 'seafoam', enhancements: true },
{ name: 'wintry', enhancements: true },
{ name: 'skeleton', enhancements: true },
{ name: 'crimson', enhancements: true },
{ name: 'rocket', enhancements: true },
{ name: 'vintage', enhancements: true },
{ name: 'sahara', enhancements: true },
{ name: 'hamlindigo', enhancements: true },
{ name: 'gold-nouveau', enhancements: true }
]
}
})
]
} satisfies Config;
export default config;