-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
79 lines (79 loc) · 1.52 KB
/
tailwind.config.js
File metadata and controls
79 lines (79 loc) · 1.52 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
colors: {
white: {
100: '#ffffff',
200: '#ECECEC',
300: '#cccccc',
400: '#f8fafc',
},
black: {
100: '#000000',
200: '#161616',
300: '#595959',
400: '#a6a6a6',
},
danger: {
100: '#EE0979',
200: '#f6097c',
300: '#f72289',
400: '#fb84bd',
},
orange: {
100: '#FF6A00',
200: '#ff791a',
300: '#ff8833',
400: '#ffc499',
},
maron: {
100: '#833556',
200: '#a3436b',
300: '#b54a77',
400: '#c46e92',
},
red: {
100: '#b91c1c',
200: '#dc2626',
300: '#ef4444',
400: '#f87171',
},
blue: {
100: '#1e40af',
200: '#1d4ed8',
300: '#2563eb',
400: '#3b82f6',
},
green: {
100: '#166534',
200: '#15803d',
300: '#16a34a',
400: '#22c55e',
},
},
extend: {
fontFamily: {
raleway: ['var(--font-raleway)', 'sans-serif'],
poppins: ['var(--font-poppins)', 'sans-serif'],
},
},
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
},
},
},
plugins: [],
};