-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
84 lines (81 loc) · 2.48 KB
/
tailwind.config.ts
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
container: {
screens: {
sm: '600px',
md: '728px',
lg: '984px',
xl: '1170px',
'2xl': '1170px',
},
},
colors: {
bgc: {
DEFAULT: "#FFFFFF",
},
fgc: {
DEFAULT: "#293754",
},
text: {
DEFAULT: "#293754",
},
textSecondary: {
DEFAULT: "#677287",
},
textActive: {
DEFAULT: "#000041",
},
primary: {
DEFAULT: "#FFB11B",
},
border: {
DEFAULT: "#cccccc",
}, // dark - border color (opacity: 10%, stroke width: 0.75)
disable: {
DEFAULT: "#e5e8f3",
dark: "#475569",
},
bgHeader: {
DEFAULT: "#2d3040",
dark: "#1E293B",
},
menubg: {
DEFAULT: "#3E4C76",
}
,
green: "#16A34A",
},
maxWidth: {
'3xl': '50%',
},
padding: {
"18": "72px",
},
gap: {
"18": "72px",
},
fontSize: {
"42": "42px",
"32": "32px",
},
backgroundImage: (theme: any) => ({
'gradient-primary': `linear-gradient(105deg, ${theme('colors.blue.700/15%')}, ${theme('colors.blue.700/0%')})`,
'gradient-secondary': `linear-gradient(105deg, ${theme('colors.blue.700/85%')}, ${theme('colors.blue.700/0%')})`,
}),
/* backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
}, */
},
},
plugins: [],
}
export default config