-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
73 lines (73 loc) · 1.68 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
/* eslint-disable quotes */
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
backgroundImage: {
'hero-pattern': "url('/img/hero-pattern.png')",
},
fontFamily: {
sans: ['Lexend', 'sans-serif'],
},
colors: {
primary: {
50: '#CCE2E4',
100: '#C9E8E7',
200: '#97D7D6',
300: '#54CFCF',
400: '#35C4C7',
500: '#1CBAC1',
600: '#1BAAAF',
700: '#1B9597',
800: '#198180',
900: '#165D58',
1000: '#093232',
},
secondary: {
100: '#FDD2D6',
200: '#ECA3A2',
300: '#E2817F',
400: '#EC675F',
500: '#F25D49',
600: '#E35447',
700: '#D04A40',
800: '#C3453A',
900: '#B23D30',
},
gray: {
100: '#F5F5F5',
200: '#F7F7F7',
300: '#DCEAEA',
400: '#CED4DA',
500: '#ADB5BD',
600: '#6C757D',
700: '#495057',
800: '#343A40',
900: '#212529',
},
error: {
100: '#ff5c49',
200: '#cb3903',
300: '#b60000',
},
info: '#6791ff',
success: '#00d6c0',
warning: '#ffc549',
},
maxWidth: {
'8xl': '76.25rem',
},
screens: {
xs: '480px',
'2xl': '1536px',
},
borderRadius: {
'4xl': '2rem',
'5xl': '2.5rem',
'6xl': '3rem',
'7xl': '3.5rem',
},
},
},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
};