-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 888 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 888 Bytes
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
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/views/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}'
],
theme: {
fontFamily: {
sans: 'Outfit, sans-serif'
},
extend: {
colors: {
primary: '#1F93FF',
focused: '#000000', // text color
unfocused: '#999999', // eg. unselected menu link
label: '#585858',
'bg-card': '#f8f8f8',
'bg-wash': '#abc8ff',
secondary: '#636363',
'st-pink': '#FF7272',
'st-orange': '#FF8A58',
'st-border': '#C1C1C1',
'st-secondary': '#F3F3F3',
'st-text': '#757575'
},
width: {
160: '40rem',
240: '60rem'
},
borderRadius: {
card: '30px'
},
fontFamily: {
symptrack: 'Quicksand, sans-serif'
}
}
},
plugins: []
}