-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (62 loc) · 1.58 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,jsx,ts,tsx}',
'./src/components/**/*.{js,jsx,ts,tsx}',
'./src/containers/**/*.{js,jsx,ts,tsx}',
'./src/templates/**/*.{js,jsx,ts,tsx}',
],
theme: {
scale: {
'-100': '-1',
},
borderRadius: {
project: '35px',
},
extend: {
gridTemplateColumns: {
16: 'repeat(16, minmax(0, 1fr))',
},
fontFamily: {
roboto: ['Roboto'],
jost: ['Jost'],
neo: ['Neo'],
pretendard: ['Pretendard'],
'apple-neo': ['Apple SD Gothic Neo'],
},
textColor: {
Text_Color1: ['#8D8A93'],
Text_Color2: ['#525252'],
Text_Color3: ['#CDCDCD'],
},
colors: {
gradient_color1: ['#F590FA'],
gradient_color2: ['#81A0F6'],
mainGra1: ['#f953ff'],
mainGra2: ['#5a89ff'],
glass: ['rgba(255, 255, 255, 0.5)'],
white: ['#FFFFFF'],
black: ['#111111'],
gray1: ['#525252'],
gray2: ['#d4d7db'],
gray3: ['#ececec'],
gray4: ['#f9fafb'],
purple: ['#db95fa'],
blue: ['#5a47cc'],
bluegray1: ['#98a4cd'],
bluegray2: ['#d8def2'],
bluegray3: ['#e9ecf6'],
bluegray4: ['#f4f6fc'],
},
},
screens: {
xs: { min: '0px', max: '350px' },
sm: { min: '350px', max: '720px' },
md: { min: '721px', max: '1080px' },
lg: { min: '1081px', max: '1440px' },
xl: { min: '1441px', max: '1920px' },
xxl: { min: '1921px' },
},
},
plugins: [],
};