-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (39 loc) · 990 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (39 loc) · 990 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
40
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./App.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
'./app/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
colors: {
primary: '#1C2833',
background: '#ffffff',
overlay: 'rgba(0, 0, 0, 0.2)',
error: '#e84118',
success: '#4cd137',
text: '#000000',
gray: '#757575',
qblue: '#008BE1',
qgreen: '#0BCA5E',
qyellow: '#DEA807',
qred: '#F22626',
qtheme: '#1C2833',
},
fontFamily: {
pthin: ['Poppins-Thin', 'sans-serif'],
pextralight: ['Poppins-ExtraLight', 'sans-serif'],
plight: ['Poppins-Light', 'sans-serif'],
pregular: ['Poppins-Regular', 'sans-serif'],
pmedium: ['Poppins-Medium', 'sans-serif'],
psemibold: ['Poppins-SemiBold', 'sans-serif'],
pbold: ['Poppins-Bold', 'sans-serif'],
pextrabold: ['Poppins-ExtraBold', 'sans-serif'],
pblack: ['Poppins-Black', 'sans-serif'],
},
},
},
plugins: [
],
};