-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
111 lines (110 loc) · 2.08 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
/** @type {import('tailwindcss').Config} */
const { fontFamily } = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/app/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
sm: '575px',
md: '768px',
lg: '1024px',
xl: '1200px',
xxl: '1440px'
},
fontFamily: {
'serif': ['var(--libre)', ...fontFamily.serif],
'sans': ['var(--poppins)', ...fontFamily.sans]
},
colors: {
white: '#fff',
purple: '#2F1B41',
pink: {
300: '#e7d5da',
700: '#9B314D',
900: '#9F1E49'
},
red: {
300: '#e57373',
500: '#ff2e2e',
900: '#9F1E49'
},
yellow: '#FECD51',
cyan: {
800: '#30475E'
},
gray: {
100: '#F2F2F2',
200: '#d4d4d8',
300: '#9ca3af',
400: '#a1a1aa',
500: '#71717a',
600: '#52525b',
700: '#3f3f46',
800: '#27272a',
900: '#18181b'
},
black: '#000'
},
fontSize: {
0: '0px',
4: '4px',
6: '6px',
8: '8px',
10: '10px',
13: '13px',
15: '15px',
18: '18px',
22: '22px',
26: '26px',
31: '31px',
38: '38px',
45: '45px',
55: '55px',
66: '66px',
79: '79px',
95: '95px',
114: '114px',
136: '136px',
164: '164px'
},
lineHeight: {
title: '1.2',
paragraph: '1.61'
},
spacing: {
0: '0px',
2: '2px',
4: '4px',
6: '6px',
8: '8px',
10: '10px',
13: '13px',
15: '15px',
18: '18px',
22: '22px',
26: '26px',
31: '31px',
38: '38px',
45: '45px',
55: '55px',
66: '66px',
79: '79px',
95: '95px',
114: '114px',
136: '136px',
164: '164px',
185: '185px',
'4/3': '45%',
'-4/3': '-45%',
},
extend: {
backgroundImage: {
'waves': "url('/img/waves.png')",
}
}
},
plugins: [],
}