-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
66 lines (66 loc) · 1.68 KB
/
tailwind.config.js
File metadata and controls
66 lines (66 loc) · 1.68 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./.vitepress/**/*.{js,ts,tsx,vue}",
"./content/**/*.md",
"./src/**/*.{js,ts,vue,tsx}",
],
darkMode: "class",
theme: {
extend: {
typography: {
DEFAULT: {
css: {
"--tw-prose-headings": "#3c3c43",
"--tw-prose-code": "#3c3c43",
"--tw-prose-invert-headings": "#fffff5db",
"--tw-prose-invert-code": "#fffff5db",
"--tw-prose-invert-body": "#fffff5db",
"--tw-prose-invert-bold": "#fffff5db",
},
},
},
animation: {
text: "text 5s ease infinite",
},
keyframes: {
text: {
"0%, 100%": {
"background-size": "200% 200%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
},
colors: {
"dark-text": "#fffff5db",
"dark-red": "#d5a6bd",
"blue-1": "#a175ff",
"blue-2": "#a394f0",
"cyna-1": "#61ffca",
"cyna-2": "#73bc83",
"cyna-3": "#57bf7d",
color1: "#bfbfbf",
color2: "#d5a6bd",
color3: "#a3c7e6",
color4: "#9fd4b9",
color5: "#808080",
color6: "#404040",
color7: "#f6eaa2",
color8: "#ff8c00",
color9: "#ff8ba6",
color10: "#d4a373",
pink1: "#ffe9f3",
pink2: "#f2ccff",
pink3: "#f5e1ff",
pink4: "#e7f5f0",
pink5: "#f1faf5",
darkbg: "#1c1c1c",
},
},
},
plugins: [require("@tailwindcss/typography")],
};