-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
56 lines (52 loc) · 1.19 KB
/
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
47
48
49
50
51
52
53
54
55
56
const config = {
content: ['./src/**/*.{html,js,svelte,ts}', './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
animation: {
blob: 'blob 12s infinite'
},
fontFamily: {
geologica: ['geologica', 'sans-serif']
},
keyframes: {
blob: {
'0%': {
transform: 'translate(0px, 0px) scale(1)'
},
'33%': {
transform: 'translate(20px, -50px) scale(1.05)'
},
'66%': {
transform: 'translate(-20px, 20px) scale(0.95)'
},
'100%': {
transform: 'tranlate(0px, 0px) scale(1)'
}
}
}
}
},
plugins: [require('@tailwindcss/typography'), require('daisyui'), require('flowbite/plugin')],
daisyui: {
themes: [
{
light: {
...require('daisyui/src/theming/themes')['[data-theme=light]'],
primary: '#73dcff',
'primary-focus': '#33cefd',
secondary: '#546aff',
'secondary-content': '#fff',
'secondary-focus': '#3640f5'
},
dark: {
...require('daisyui/src/theming/themes')['[data-theme=dark]'],
primary: '#73dcff',
'primary-focus': '#33cefd',
secondary: '#546aff',
'secondary-focus': '#3640f5'
}
}
]
}
};
module.exports = config;