-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (58 loc) · 1.48 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
47
48
49
50
51
52
53
54
55
56
57
58
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
primary: '#161622',
secondary: {
DEFAULT: '#F1AC09',
50: '#FFEFDB',
100: '#FF9001',
200: '#FF8E01'
},
black: {
DEFAULT: '#000000',
100: '#1E1E2D',
200: '#232533'
},
white: {
DEFAULT: '#FFFFFF',
100: '#F5F5F5'
},
gray: {
50: '#F9FAFB',
100: '#FAFAFC',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#9CA3AF',
500: '#6B7280',
600: '#4B5563',
700: '#374151',
800: '#1F2937',
900: '#111827'
},
green: {
100: '#E7FFEA',
200: '#05B617'
},
red: {
100: '#FFF1F1',
200: '#EB5757'
}
},
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: []
};