-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (48 loc) · 1.01 KB
/
tailwind.config.js
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
// /** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/*.{js,ts,jsx,tsx,html}",
"./src/**/*.{js,ts,jsx,tsx,html}",
"./src/animation/*.{js,ts,jsx,tsx,html}",
],
darkMode: 'class',
theme: {
container: {
},
extend: {
spacing: {
'mobile': '1rem',
},
fontFamily: {
'roboto': ['Roboto', 'Padauk'],
'poppins': ['Poppins', 'Padauk']
},
fontSize: {
},
},
screens: {
'sm': '576px',
'md': '768px',
'lg': '992px',
'xl': '1200px',
'xxl': '1400px'
},
},
daisyui: {
themes: true,
darkTheme: "dark",
logs: true,
mytheme: {
"primary": "#74e02c",
"secondary": "#a009f2",
"accent": "#df45f7",
"neutral": "#1c1b22",
"base-100": "#323e49",
"info": "#88ddf7",
"success": "#29c285",
"warning": "#e4c111",
"error": "#fb4c46",
},
},
plugins: [require("daisyui")],
}