-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
119 lines (119 loc) · 2.47 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// /** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
screens: {
xs: '425px',
smz: '500px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
fontFamily: {
lato: 'Lato',
poppins: 'Poppins',
'public-sans': ['Public Sans', 'sans-serif'],
},
fontSize: {
xs: '0.75rem',
sm: '0.875rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
'32px': '32px',
},
extend: {
colors: {
gray: {
50: '#F2F4F5',
100: '#E4E7E9',
200: '#edf2f7',
300: '#ADB7BC',
400: '#929FA5',
500: '#77878F',
600: '#5F6C72',
700: '#475156',
800: '#2d3748',
900: '#191C1F',
},
blue: {
25: '#E3E7FC',
100: '#ebf8ff',
200: '#bee3f8',
300: '#90cdf4',
400: '#63b3ed',
500: '#4299e1',
700: '#2b6cb0',
800: '#2c5282',
900: '#2a4365',
950: '#475BE8',
},
base: {
50: '#292929',
75: '#676767',
100: '#525252',
},
green: {
100: '#4CE13F',
},
primary: {
100: '#FFE7D6',
500: '#FA8232',
},
secondary: {
500: '#2DA5F3',
600: '#2484C2',
700: '#1B6392',
},
error: {
100: '#d32f2f',
},
succes: {
500: '#2DB224',
},
danger:{
500:'#EE5858',
},
warning: {
50: '#FDFAE7',
100: '#FBF4CE',
200: '#F7E99E',
400: '#EFD33D',
500: '#EBC80C',
},
medium: {
600: '#141414',
},
},
lineHeight: {
56: '56px',
130: '130%',
140: '140%',
},
minWidth: {
sm: '320px',
},
maxWidth: {
'340px': '340px',
'356px': '356px',
'360px': '360px',
},
spacing: {
4.5: '18px',
},
boxShadow: {
primary: '0px 8px 40px 0px rgba(0, 0, 0, 0.12)',
secondary: '0px -1px 0px 0px rgba(255, 255, 255, 0.16) inset',
base: '0px -1px 0px 0px #E4E7E9 inset',
},
},
},
plugins: [],
};