Seera/tailwind.config.js
2025-11-03 13:38:27 +05:30

26 lines
452 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
perspective: {
'1000': '1000px',
},
transformStyle: {
'3d': 'preserve-3d',
},
backfaceVisibility: {
'hidden': 'hidden',
},
rotate: {
'y-180': 'rotateY(180deg)',
},
},
},
plugins: [],
}