-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
42 lines (37 loc) · 987 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
import { join } from 'path';
import type { Config } from 'tailwindcss';
import { skeleton } from '@skeletonlabs/tw-plugin';
import forms from '@tailwindcss/forms';
import { customTheme } from './src/theme';
import { getThemeDarkColor } from './src/lib/themes/theme.selector';
//////////////////////////////////////////////////////////////////////////
const themeDarkColor = getThemeDarkColor();
//////////////////////////////////////////////////////////////////////////
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{html,js,svelte,ts}',
join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
],
theme: {
extend: {
strokeWidth: {
'2': '4px',
},
backgroundImage: {
'back-ground':
`linear-gradient(to bottom, white 0%, white 35%, ${themeDarkColor} 35%, ${themeDarkColor} 100%)`,
},
},
},
plugins: [
forms,
skeleton({
themes: {
custom: [
customTheme
]
}
})
],
} satisfies Config;