-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (40 loc) · 950 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
40
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
purple: {
dark: "#4b2995",
DEFAULT: "#8047f8",
light: "#ebe5f9",
},
yellow: {
dark: "#c47f17",
DEFAULT: "#dbac2c",
light: "#f1e9c9",
},
base: {
title: "#272221",
subtitle: "#403937",
text: "#574f4d",
label: "#8d8686",
hover: "#d7d5d5",
button: "#e6e5e5",
input: "#ededed",
card: "#f3f2f2",
background: "#fafafa",
},
},
fontFamily: {
baloo: ["'Baloo 2'"],
roboto: ["Roboto"],
},
backgroundImage: {
banner: "url(/banner.png)",
confirmed: "linear-gradient(102.89deg, #DBAC2C 2.61%, #8047F8 98.76%)",
},
},
},
plugins: [],
}