-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (39 loc) · 928 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
30
31
32
33
34
35
36
37
38
39
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
colors: {
primary: '#161622',
secondary: {
DEFAULT: '#FF9C01',
100: '#FF9001',
200: '#FF8E01',
},
black: {
DEFAULT: '#000',
100: '#1E1E2D',
200: '#232533',
},
gray: {
100: '#CDCDE0',
},
},
fontFamily: {
popthin: ['Poppins-Thin', 'sans-serif'],
popextralight: ['Poppins-ExtraLight', 'sans-serif'],
poplight: ['Poppins-Light', 'sans-serif'],
popregular: ['Poppins-Regular', 'sans-serif'],
popmedium: ['Poppins-Medium', 'sans-serif'],
popsemibold: ['Poppins-SemiBold', 'sans-serif'],
popbold: ['Poppins-Bold', 'sans-serif'],
popextrabold: ['Poppins-ExtraBold', 'sans-serif'],
popblack: ['Poppins-Black', 'sans-serif'],
},
},
},
plugins: [],
};