-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.13 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
'righteous': ['Righteous', 'system-ui'],
'montserrat': ['Montserrat', 'Georgia'],
'mono': ['ui-monospace', 'SFMono-Regular'],
'display': ['Oswald'],
'body': ['Montserrat']
},
spacing: {
'4p': '2px',
},
borderRadius: {
'16xl': '64px',
'10xl': '40px',
'8xl': '40px 40px 0px 0px',
'left': '0.375rem 0 0 0.375rem',
'right': '0 0.375rem 0.375rem 0',
},
borderWidth: {
1: '1px',
4: '4px',
},
colors: {
primary: '#13053D',
secondary: '#7E18FF',
terciary: '#FFB01D',
blueBackground: '#97B1FA',
contentBackground: '#e8eeffff',
footer: '#212134',
backpackConnectBackground: '#D2CDFF',
charcoal: '#1F1F1F',
greyedOut: '#626262'
},
boxShadow: {
primary: '0px 1px 20px #FF00C7',
},
},
},
variants: {
extend: {},
},
plugins: [],
};