-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 931 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (35 loc) · 931 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./App.{js,jsx,ts,tsx}',
'./src/**/*.{js,jsx,ts,tsx}',
'./navigation/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
fontFamily: {
ft: ['Figtree-Light'],
ftMed: ['Figtree-Medium'],
ftSemi: ['Figtree-SemiBold'],
ftBold: ['Figtree-Bold'],
ftDark: ['Figtree-ExtraBold'],
},
backgroundColor: {
primary: '#2563eb',
secondary: 'rgb(252, 124, 59)',
'light-black': '#162522',
'slate1': '#eff2fa', // Add the bg-light-white" class
'slate2': '#EFF2F9',
'light-dark': '#9ca3af',
},
textColor: {
primary: '#2563eb',
'light-black': '#162522',
'light-white': '#F9F9F9', // Add the bg-light-white" class
'light-white1': '#ECEDF1',
'light-dark': '#9ca3af',
},
},
},
plugins: [],
};