forked from prem-research/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 1.18 KB
/
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
41
42
43
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
screens: {
maxSm: { max: "639px" },
maxMd: { max: "767px" },
maxLg: { max: "1023px" },
minMaxMd: { min: "768px", max: "1023px" },
},
boxShadow: {
default: "box-shadow(0px 4.49864px 26.9918px -1.12466px rgba(0, 0, 0, 0.2))",
},
colors: {
darkjunglegreen: "#1D1E24",
brightgray: "#EDEDED",
americanpink: "#F49893",
tulip: "#F58E8E",
lightsalmonpink: "#F49E97",
darkliver: "#4D4D4F",
manatee: "#9597A3",
cultured: "#F5F5F5",
Onyx: "#383838",
timberwolf: "#DBD5D5",
sonicsilver: "#797979",
antiflashwhite: "#F1F2F4",
lavendergray: "#C5C5D2",
darkcharcoal: "#302F32",
philippinegray: "#8F8F95",
ghostwhite: "#F7F7FD",
ruddypink: "#EA938E",
isabelline: "#F7F0ED",
arsenic: "#3C3D49",
darkgunmetal: "#20232B",
spanishgray: "#999999",
charlestongreen: "#29292D",
},
},
},
plugins: [],
};