-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (56 loc) · 1.63 KB
/
Copy pathtailwind.config.js
File metadata and controls
57 lines (56 loc) · 1.63 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
roboto: ['Roboto', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'],
vazirmatn: ['Vazirmatn', 'Roboto', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'],
},
},
},
daisyui: {
themes: [{
light:{
"base-content":"#121212",
"base-100": "#ffffff",
"base-300": "#d1d1d1",
"base-200": "#bababa",
"success": "#b7d93d",
"error": "#c90010",
"info": "#0055fe",
"--rounded-box": "0.375rem",
"--rounded-btn": "0.375rem",
"--rounded-badge": "1.9rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-focus-scale": "1",
"--border-btn": "1px",
"--tab-border": "1px",
"--tab-radius": "0.5rem"
},
dark:{
"base-content":"#d1d1d1",
"base-100": "#272727",
"base-200": "#232323",
"base-300": "#121212",
"success": "#b7d93d",
"error": "#c90010",
"info": "#0055fe",
"--rounded-box": "0.375rem",
"--rounded-btn": "0.375rem",
"--rounded-badge": "1.9rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-focus-scale": "1",
"--border-btn": "1px",
"--tab-border": "1px",
"--tab-radius": "0.5rem"
}
}],
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
}