-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
37 lines (37 loc) · 929 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,jsx,ts,tsx}",
"./Screens/**/*.{js,jsx,ts,tsx}",
"./Components/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
borderRadius: {
log: "40px",
},
colors: {
inchWorm: "#C5ED70",
raisingBlack: "#161621",
celadon: "#A3F3B0",
paleSilver: "#F2F4F4",
mediumGrey: "#94979A",
seaGreen: "#37BD6B",
paleOrange: "#FEAC56",
chineseBlack: "#171215",
mistBlue: "#6A6D7C",
cyanGreen:"#00CCBB"
},
fontFamily: {
gilroyRegular: "gilroyRegular",
gilroyBold: "gilroyBold",
gilroyMedium: "gilroyMedium",
gilroySemiBold: "gilroySemiBold",
interBold: "Inter_700Bold",
interRegular: "Inter_400Regular",
interMedium: "Inter_500Medium",
},
},
},
plugins: [],
};