nonszy-space/tailwind.config.ts
2025-09-02 06:41:17 +07:00

39 lines
838 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
primary: "var(--primary)",
},
},
screens: {
'xs': '480px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
animation: {
"silly-bouncing": 'silly-bounce 0.8s infinite',
'window-popup': 'window-popup 1s'
},
keyframes: {
"fade-in-half": {
'0%, 50%': { opacity: "0" },
'100%': { opacity: '1' },
}
}
},
plugins: [],
};
export default config;