stream/tailwind.config.js
2023-12-05 11:13:59 +00:00

17 lines
338 B
JavaScript

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