-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (49 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors : {
blue: {
700: "#146EB4",
750: "#1174c2",
800: "#1E2640",
900: "#0E4F82"
},
white: {
50: "#FAFAFA",
100: "rgba(255, 255, 255, 0.1)",
200: "rgba(255, 255, 255, 0.8)",
500: "#ffffff",
},
grey : {
100: "#353C53",
200: "#1A181E"
},
black: {
100: "#F2F2F2",
200: "#E6E6E6",
150: "#D9D9D9",
300: "#808080",
400: "#4D4D4D",
500: "#999999",
600: "#1A181E"
},
gree: {
500: "#17B31B"
}
},
fontFamily : {
'inter':["Inter", 'sans-serif'],
'grotesque' : ["grotesque"]
},
boxShadow: {
'custom': '0 2px 6px 0px rgba(0, 0, 0, 0.1)',
}
},
},
plugins: [],
}