liarMP4 / frontend /tailwind.config.js
GlazedDon0t's picture
v2
166877e
raw
history blame contribute delete
410 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'vchat-bg': '#0f172a',
'vchat-panel': '#1e293b',
'vchat-accent': '#6366f1',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
},
},
plugins: [],
}