This commit is contained in:
Krikorios
2025-07-12 22:36:47 +04:00
parent 7fbf089ec5
commit f83b27db61
73 changed files with 19053 additions and 189 deletions
+55
View File
@@ -0,0 +1,55 @@
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)",
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
animation: {
'fade-in-up': 'fade-in-up 0.8s ease-out',
'float': 'float 3s ease-in-out infinite',
'pulse-glow': 'pulse-glow 2s ease-in-out infinite',
},
keyframes: {
'fade-in-up': {
'0%': {
opacity: '0',
transform: 'translateY(30px)',
},
'100%': {
opacity: '1',
transform: 'translateY(0)',
},
},
'float': {
'0%, 100%': {
transform: 'translateY(0px)',
},
'50%': {
transform: 'translateY(-10px)',
},
},
'pulse-glow': {
'0%, 100%': {
boxShadow: '0 0 5px rgba(59, 130, 246, 0.5)',
},
'50%': {
boxShadow: '0 0 20px rgba(59, 130, 246, 0.8)',
},
},
},
},
},
plugins: [],
};
export default config;