forked from DioxusLabs/docsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (37 loc) · 996 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "all",
content: ["./src/**/*.{rs,html,css}", "./docs/**/*.html"],
theme: {
extend: {
colors: {
ghmetal: "#24292f",
ghdarkmetal: "#161b22",
ideblack: "#0e1116",
// ideblack: "#0a0a0a",
// ideblack: "#0E1116",
},
fontFamily: {
sans: ["Lexend", "sans-serif"],
// sans: ["Inter var", "sans-serif"],
},
boxShadow: {
"3xl": "0 35px 60px -1ww5px rgba(0, 0, 0, 0.5)",
cutesy: "0px 0px 40px -5px rgba(255, 255, 255, 0.2)",
// cutesy: "0px 0px 30px -10px white",
// cutesy: "0px 0px 30px -10px red",
pop: "0px 0px 30px -10px rgba(0, 0, 0, 0.5)",
},
keyframes: {
fadein: {
'from': { opacity: '0' },
'to': { opacity: '1' },
}
},
animation: {
'fadein-medium': 'fadein 500ms ease-in-out forwards',
},
},
},
plugins: [],
};