forked from TogetherCrew/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
136 lines (128 loc) · 2.56 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/** @type {import('tailwindcss').Config} */
const colors = {
primary: {
DEFAULT: '#5E4F96',
50: '#F8F6FF',
100: '#E4DCFF',
200: '#BBA9FF',
300: '#8D7CD0',
400: '#7564B3',
},
secondary: {
DEFAULT: '#804EE1',
50: '#F6FDFF',
100: '#E3F8FF',
200: '#BCEEFF',
300: '#8CD3EA',
400: '#4E90A6',
500: '#225262',
},
info: {
DEFAULT: '#4368F1',
50: '#F7FFFE',
100: '#D0FBF8',
200: '#A7F3F0',
300: '#92DAD6',
400: '#7DC0BD',
500: '#39C2C0',
600: '#313671',
},
error: {
DEFAULT: '#B6435B',
50: '#FFF0F3',
100: '#FFC5D1',
200: '#FD98AE',
300: '#F06885',
400: '#D3546F',
500: '#FB3E56',
},
warning: {
DEFAULT: '#BB6842',
50: '#FFF5F0',
100: '#FFD6C3',
200: '#FFB897',
300: '#F59467',
400: '#D87D53',
500: '#FF9022',
},
yellow: {
DEFAULT: '#FBD13E',
50: '#FFFAEA',
100: '#FFEEBD',
200: '#FFE28F',
300: '#FFD761',
400: '#FFCB33',
},
green: {
DEFAULT: '#3AAE2B',
},
lite: '#F8F8F8',
'lite-black': '#3E3E3E',
'gray-background': '#EDEDED',
'lite-gray': '#515151',
'gray-custom': '#222222',
'border-gray': '#B4B4B4',
aqua: '#35B9B7',
success: '#56C054',
'gray-hover':'#F7F7F7',
'purple-light':'#8474C0'
};
const backgroundImage = {
'gradient-mantle':
'linear-gradient(90.64deg, #FFFFFF 69.92%, #D1D0DA 99.54%)',
};
const boxShadow = {
base: '0px 2px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(138, 138, 138, 0.16)',
box: '0px 2px 4px rgba(0, 0, 0, 0.04), 0px 4px 10px rgba(138, 138, 138, 0.1)',
};
const screens = {
sm: '760px',
// => @media (min-width: 576px) { ... }
md: '1023px',
// => @media (min-width: 768px) { ... }
lg: '1200px',
// => @media (min-width: 992px) { ... }
xl: '1600px',
// => @media (min-width: 1200px) { ... }
};
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/layouts/**.{js,ts,jsx,tsx}',
],
important: true,
theme: {
extend: {
screens: {
...screens,
},
colors: {
...colors,
},
backgroundImage: {
...backgroundImage,
},
boxShadow: {
...boxShadow,
},
height: {
128: '36rem',
130: '38rem',
140: '40rem',
150: '50rem',
},
container: {
center: true,
screens: {
sm: '760px',
md: '1023px',
lg: '1200px',
xl: '1400px',
},
},
},
},
plugins: [],
};