-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (44 loc) · 1.01 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
boxShadow: {
card: "0 3px 7px 2px rgba(7, 30, 54, 0.22)",
},
colors: {
favouriteActive: "#f695b5",
primary: {
50: "#f1f8fd",
100: "#dfeffa",
200: "#c7e3f6",
300: "#a0d2f0",
400: "#73b8e7",
500: "#529cdf",
600: "#4788d5",
700: "#346dc1",
800: "#30599d",
900: "#2b4c7d",
950: "#1e304d",
},
secondary: {
50: "#fdf2f6",
100: "#fce7ef",
200: "#fac2d6",
300: "#f9a8c3",
400: "#f4729b",
500: "#ec4876",
600: "#db2751",
700: "#be183a",
800: "#9d1731",
900: "#83182c",
950: "#500715",
},
defaultText: "#0d2748",
linkText: "#2492b5",
},
},
},
plugins: [],
};