stream/tailwind.config.js

22 lines
507 B
JavaScript
Raw Normal View History

2023-12-04 12:18:16 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
"gray-1": "#171717",
2023-12-04 12:56:20 +00:00
"gray-2": "#222",
2023-12-07 15:35:13 +00:00
"gray-3": "#797979",
2023-12-05 16:32:54 +00:00
primary: "var(--primary)",
2023-12-07 12:35:46 +00:00
secondary: "var(--secondary)",
2023-12-07 15:35:13 +00:00
zap: "var(--zap)",
},
animation: {
"ping-once": "ping 1s cubic-bezier(0, 0, 0.2, 1);",
2023-12-07 17:59:28 +00:00
flash: "pulse 0.5s 6 linear;",
},
},
2023-12-04 12:18:16 +00:00
},
plugins: [],
};