-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
39 lines (38 loc) · 983 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
38
39
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundColor: {
Accent: "#30F2A1",
Black: "#0C0B0B",
Grey: "#98A2B3",
"Shade/White": "#FFFFFF",
"Grey/50": "#F9FAFB",
"Grey/900": "#101928",
Orange: "#FF8C42",
"Gray 5": "#E0E0E0",
},
colors: {
Accent: "#30F2A1",
Black: "#0C0B0B",
Grey: "#98A2B3",
"Shade/White": "#FFFFFF",
"Grey/50": "#F9FAFB",
"Grey/900": "#101928",
Orange: "#FF8C42",
"Gray 5": "#E0E0E0",
},
fontFamily: {
"Epilogue-VariableFont": ["Epilogue-VariableFont", "Inter"],
},
},
},
plugins: [require("tailwind-scrollbar-hide")],
};