-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
49 lines (48 loc) · 906 Bytes
/
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
44
45
46
47
48
49
import { join } from 'path';
import type { Config } from 'tailwindcss';
import forms from '@tailwindcss/forms';
import { skeleton } from '@skeletonlabs/tw-plugin';
import { Wet } from './src/Wet';
export default {
darkMode: 'class',
content: [
'./src/**/*.{html,js,svelte,ts}',
join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
],
theme: {
extend: {
colors: {
'hashnode-blue': '#2463EB',
'cali-gold': '#FFC30B',
'paddle-tan': '#93645F',
'turkish-ginger': '#F6F7BD'
}
}
},
plugins: [
forms,
skeleton({
themes: {
preset: [
{
name: 'modern',
enhancements: true
},
{
name: 'wintry',
enhancements: true
},
{
name: 'crimson',
enhancements: true
},
{
name: 'skeleton',
enhancements: true
}
],
custom: [Wet]
}
})
]
} satisfies Config;