-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
55 lines (52 loc) · 1.63 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
55
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["Pages/**/*.cshtml", "Components/**/*.razor"],
theme: {
extend: {
screens: {
'3xl': "1792px",
'4xl': "2048px",
'5xl': "2304px",
'6xl': "2560px",
'8xl': "3072px"
},
container: {
'max-width': {
'3xl': "1792px",
'4xl': "2048px",
'5xl': "2304px",
'6xl': "2560px",
'8xl': "3072px"
}
}
},
fontSize: {
sm: '0.750rem',
base: '1rem',
xl: '1.333rem',
'2xl': '1.777rem',
'3xl': '2.369rem',
'4xl': '3.158rem',
'5xl': '4.210rem'
}
},
plugins: [require("daisyui")],
daisyui: {
logs: false,
themes: [
{
dark: {
"primary": "#4a3285",
"primary-content": "#26d962",
"secondary-content": "#1fad4e",
"base-100": "#141414",
"base-content": "#fff",
"--rounded-btn": ".125rem",
"fontFamily": 'BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif',
"fontSize": "1.1rem",
"fontWeight": 600
}
}
]
}
}