-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (41 loc) · 895 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (41 loc) · 895 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
41
42
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,tsx}",,
],
theme: {
extend: {
colors: {
"brand": {
'purple': {
'400': '#8284FA',
'500': '#5E60CE',
},
'blue': {
'400': '#4EA8DE',
'500': '#1E6F9F',
},
'base': {
'gray': {
'100': '#F2F2F2',
'200': '#D9D9D9',
'300': '#808080',
'400': '#333333',
'500': '#262626',
'600': '#1A1A1A',
'700': '#0D0D0D',
},
'danger': {
'400': '#E25858',
}
}
},
},
fontFamily: {
'Inter': 'Inter',
},
},
},
plugins: [],
}