-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (58 loc) · 1.26 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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
container: {
screens: {
sm: '100%',
md: '100%',
lg: '1024px',
xl: '1280px',
},
},
extend: {
fontSize: {
xxs: '0.875rem', //14px
xs: '1rem', //16px
base: '1.125rem', //18px
sm: '1.125rem', // 18px
md: '1.25rem', // 20px
lg: '1.375rem', // 22px
xl: '1.5rem', // 24px
'2xl': '1.5625rem', // 25px
'3xl': '2.1875rem', // 35px
'4xl': '2.5rem', // 40px
'5xl': '3.125rem', // 50px
},
screens: {
'3xl': '2560px',
},
spacing: {
30: '1.875rem', //30px,
},
colors: {
transparent: 'transparent',
blue: '#3D69F0',
sky: '#ABAEFF',
pink: '#F0BBF3',
yellow: '#FAFF7E',
beige: '#FFF2EA',
gray: '#1E1E1E',
black: '#000000',
white: '#FFFFFF',
boobs: {
hotpink: '#ec2b68',
pink: '#e482b0',
purple: '#9c5f86',
},
},
},
fontFamily: {
sans: ['Libre Franklin', 'sans-serif'],
display: ['Dela Gothic One', 'sans-serif'],
},
},
plugins: [],
}