-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.38 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
44
45
46
47
48
49
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
blue: "#1AC9E7",
bluelight: "#E8F9FD",
cyan: "#15acc6",
red: "#dc3545",
dark: "#212529",
light: "#f8f9fa",
gray: "#495057",
graymed: "#6c757d",
muted: "#adb5bd",
graylight: "#DFDFDF",
darkgreen: "#28a745",
green: "#32FF7E",
indigo: "#6610f2",
purple: "#7d5fff",
purplemedium: "#D9D1FF",
purplelight: "#F7F5FF",
orange: "#fd7e14",
pink: "#e83e8c",
yellow: "#ffc107",
white: "#ffffff",
black: "#212529",
},
fontFamily: {
circular:
'"CircularStd", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
},
backgroundImage: {
"about-cover": "url('/img/about-cover.jpg')",
"events-cover": "url('/img/events-cover.jpg')",
"contact-cover": "url('/img/contact-cover.jpg')",
},
boxShadow: {
block: "0.5rem 0.5rem 0 rgb(233 236 239 / 50%)",
},
cursor: {
grab: "grab",
grabbing: "grabbing",
},
},
},
variants: {},
plugins: [],
};