-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
46 lines (42 loc) · 978 Bytes
/
tailwind.config.cjs
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
const config = {
content: [
"./src/**/*.{html,js,svelte,ts}",
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
require('path').join(require.resolve(
'@skeletonlabs/skeleton'),
'../**/*.{html,js,svelte,ts}'
)
],
theme: {
extend: {
fontFamily: {
article: "'Georgia Pro Cond', sans-serif",
head: "head",
head2: "head2",
hind: "'Hind Siliguri', sans-serif",
lato: "'Lato', sans-serif",
poppins: "'Poppins', sans-serif",
kalp: "'Kalpurush', sans-serif",
fold: "'Foldit', cursive"
},
//TODO
//color customization
},
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1200px',
},
container: {
center: true,
padding: '1rem'
}
},
plugins: [
require('flowbite/plugin'),
...require('@skeletonlabs/skeleton/tailwind/skeleton.cjs')()
],
darkMode: 'class',
};
module.exports = config;