forked from PlanetaryOrbit/orbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (28 loc) · 783 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
28 lines (28 loc) · 783 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
tovybg: "#FF0099",
orbit: "#FF0099",
primary: "rgb(var(--group-theme) / <alpha-value>)",
},
backgroundImage: (theme) => ({
"infobg-light": "url('/orbitbackground-light.svg')",
"infobg-dark": "url('/orbitbackground-dark.svg')",
}),
keyframes: {
ripple: {
"0%": { transform: "scale(0.5)", opacity: "0.7" },
"100%": { transform: "scale(1.4)", opacity: "0" },
},
},
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
};