-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
29 lines (29 loc) · 992 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'customblack-1': 'rgba(2, 6, 12, 0.75)',
'customblack-2': 'rgba(2, 6, 12, 0.6)',
'customblack-3': '#3e4152',
'customcolor-4': 'rgba(40,44,63,.45)',
'customcolor-5': '#7e808c',
'customcolor-6': '#282c3f',
},
},
fontFamily: {
GrotThin: ['Grotesque Pro Thin'],
GrotReg: ['Grotesque Pro Reg'],
GrotMed: ['Grotesque Pro Med'],
GrotBold: ['Grotesque Pro Bold'],
GrotBlack: ['Grotesque Pro Black'],
ProximaNovaThin: ['ProximaNova Condensed Thin'],
ProximaNovaMed: ['ProximaNova Condensed Med'],
ProximaNovaSemiBold: ['ProximaNova Condensed SemiBold'],
ProximaNovaBold: ['ProximaNova Condensed Bold'],
ProximaNovaBlack: ['ProximaNova Condensed Black'],
},
},
plugins: [require('tailwind-scrollbar-hide')],
};