Initial commit

This commit is contained in:
belviskhoremk
2026-02-22 21:41:14 +00:00
commit 3ac82d31aa
32 changed files with 7069 additions and 0 deletions

48
tailwind.config.js Normal file
View File

@@ -0,0 +1,48 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
400: '#33f3ff',
500: '#00f0ff',
600: '#00b8cc',
700: '#009fb3',
},
secondary: {
500: '#ff0080',
600: '#cc0066',
},
},
animation: {
'float': 'float 3s ease-in-out infinite',
'float-slow': 'floatSlow 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite',
'pulse-slow': 'pulse 3s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-15px)' },
},
floatSlow: {
'0%, 100%': { transform: 'translateY(0px) rotate(0deg)' },
'50%': { transform: 'translateY(-10px) rotate(5deg)' },
},
glow: {
'0%, 100%': {
boxShadow: '0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3)',
},
'50%': {
boxShadow: '0 0 30px rgba(0, 240, 255, 0.8), 0 0 60px rgba(0, 240, 255, 0.5)',
},
},
},
},
},
plugins: [],
}