forked from haohaaorg/shan-dict-quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (34 loc) · 910 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
ubuntu: "var(--font-ubuntu)",
jakarta: "var(--font-plus-jakarta-sans)",
},
colors: {
brand: {
"cerulean-blue": "#374CB7",
"cerulean-blue-dark": "#3244a5",
"storm-dust": "#636262",
"white-smoke": "#F5F5F5",
"white-smoke-100": "#F6F6F6",
bittersweet: "#007bff",
"bittersweet-dark": "#e65f5c",
haiti: "#1B0330",
"star-dust": "#9E9E9E",
"paris-green": "#56C490",
"light-gray": "#F2F2F2",
midnight: "#1B0330",
"mountain-mist": "#959595",
},
},
},
},
plugins: [],
};