generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
46 lines (46 loc) · 1.18 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
'button': '#74779C',
'hover': '#585875',
'light-indigo': '#F0F1F5',
'border': '#D8DBE5',
'red-button-hover':'#A72828',
'red-button-text':'#FFF1F1',
'red-button':'#D24242',
'title':'#292929',
'input-text':'#989898',
'input-border':'#DCDCDC',
'modal-text': '#464646',
'green':'#247A51',
'blue-background':'#E9EAF0',
'tab-text':'#2F2F3C',
'gray-histogram': '#FAFAFA',
'red-average':"#A50F0F",
'profile-background':'#F1F1F1'
},
fontFamily: {
sans: ['Outfit', 'sans-serif'],
geologica: ['Geologica', 'sans-serif'],
},
fontSize:{
xs: ['0.625rem', '0.75rem'],
sm: ['0.75rem', '0.875rem'],
md: ['0.875rem', '1rem'],
lg: ['1rem','1.5rem'],
xl: ['1.125rem','1.25rem']
},
fontWeight:{
light:300,
normal:400,
medium:500,
semibold:600,
bold:700,
}
},
},
plugins: [],
};