-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
77 lines (77 loc) · 1.65 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
colors: {
black: '#13111B',
darkPurple: '#1D192B',
purple: '#483E6A',
lightPurple: '#B4B6E8',
lighterPurple: '#EDEEFF',
white: '#FFFFFF',
lightGreen: '#89C66D',
darkGreen: '#497763',
red: '#F2A1A1',
transparent: 'transparent',
yellow: '#efd351'
},
fontFamily: {
sans: ['Manrope', 'sans'],
},
fontSize: {
sm: ['14px', '19px'],
base: ['16px', '22px'],
lg: ['18px', '24px'],
xl: ['20px', '27px'],
'2xl': ['24px', '32px'],
'3xl': ['28px', '38px'],
'4xl': ['32px', '43px'],
'5xl': ['36px', '49px'],
'6xl': ['40px', '54px'],
'7xl': ['48px', '65px'],
'8xl': ['56px', '76px'],
'9xl': ['64px', '86px'],
'10xl': ['72px', '98px'],
},
screens: {
'3xs': '300px',
'2xs': '360px',
xs: '480px',
sm: '640px',
md: '768px',
lg: '840px',
xl: '1024px',
'2xl': '1280px',
'3xl': '1400px',
},
extend: {
width: {},
spacing: {
0.25: '1px',
18: '72px',
25: '100px',
50: '200px',
},
borderRadius: {
'2xs': '4px',
xs: '8px',
sm: '12px',
md: '16px',
lg: '20px',
xl: '24px',
'2xl': '28px',
'3xl': '32px',
'4xl': '36px',
'5xl': '48px',
},
lineHeight: {
4.5: '18px',
},
},
},
plugins: [require('@tailwindcss/line-clamp')],
};