-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
37 lines (37 loc) · 1.14 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
primary: '#243868',
secondary: '#FEF9F1',
intro: '#3B2A4B',
'gold-default': '#D6B36D',
'gold-dark': '#C2955C',
'gold-light': '#E7CFA5',
'menu-coral': '#FD9579',
bookmark: '#DD0000',
'text-white': '#ECF0F5',
'text-black': '#333333',
'text-gray': '#A5A5A5',
'transparent-yellow': '#838B98',
sun: '#C3634D',
},
fontSize: {
h1: ['96px', { fontWeight: '700' }, { color: '#333333' }],
h4: ['36px', { fontWeight: '700' }, { color: '#333333' }],
h5: ['24px', { fontWeight: '700' }, { color: '#333333' }],
h6: ['20px', { fontWeight: '700' }, { color: '#333333' }],
body1: ['16px', { fontWeight: '400' }, { color: '#333333' }],
body2: ['14px', { fontWeight: '400' }, { color: '#333333' }],
subtitle1: ['16px', { fontWeight: '500' }, { color: '#333333' }],
},
screens: {
xxs: '320px',
xs: '425px',
},
},
},
plugins: [],
};