-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1.07 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
44
import { join } from 'path';
import type { Config } from 'tailwindcss';
import typography from '@tailwindcss/typography';
import { skeleton } from '@skeletonlabs/tw-plugin';
import { beach } from './src/beach';
export default {
darkMode: 'class',
content: [
'./src/**/*.{html,js,svelte,ts}',
join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
],
theme: {
colors: {
quarternary: {
50: 'rgb(var(--color-quarternary-50))',
100: 'rgb(var(--color-quarternary-100))',
200: 'rgb(var(--color-quarternary-200))',
300: 'rgb(var(--color-quarternary-300))',
400: 'rgb(var(--color-quarternary-400))',
500: 'rgb(var(--color-quarternary-500))',
600: 'rgb(var(--color-quarternary-600))',
700: 'rgb(var(--color-quarternary-700))',
800: 'rgb(var(--color-quarternary-800))',
900: 'rgb(var(--color-quarternary-900))'
}
},
extend: {}
},
plugins: [
typography,
skeleton({
themes: {
preset: [
{
name: 'skeleton',
enhancements: true
}
],
custom: [beach]
}
})
]
} satisfies Config;