zap.stream/tailwind.config.js
Kieran 130c6048a2
Some checks reported errors
continuous-integration/drone/push Build encountered an error
feat: player overlay styles
2023-12-05 16:33:21 +00:00

18 lines
373 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
"gray-1": "#171717",
"gray-2": "#222",
primary: "var(--primary)",
},
animation: {
"ping-once": "ping 1s cubic-bezier(0, 0, 0.2, 1);",
},
},
},
plugins: [],
};