-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (41 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
indigo_50: '#e8eaf6',
indigo_400: '#5c6bcd',
custom_blue: '#2023ee',
white_opacity_08: '#fffffff08',
white_opacity_24: '#fffffff24',
white_opacity_32: '#fffffff32',
gray_100: '#f5f5f5',
gray_500: '#f5f5f5',
gray_900: '#212121',
gray_100_opacity_60: '#f5f5f560',
gray_600_opacity_60: '#21212160',
gray_600_opacity_32: '#21212132',
},
fontSize: {
body_1: '16px',
body_2: '16px',
body_3: '16px',
headline_sm: '21px',
headline_md: '26px',
headline_lg: '35px',
headline_xl: '63px',
},
fontFamily: {
nunito: ['Nunito', 'sans-serif'],
},
fontWeight: {
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
},
},
},
plugins: [],
};