We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e61d4e6 + d6d3a77 commit eb74e08Copy full SHA for eb74e08
1 file changed
src/frontend/src/pages/CreditsPage/CreditsPage.tsx
@@ -314,6 +314,27 @@ const CreditsPage: React.FC = () => {
314
'100%': { textShadow: '0 0 4px rgba(190, 0, 0, 0.7), 0 0 10px rgba(190, 0, 0, 0.4)' }
315
}
316
317
+ },
318
+ {
319
+ name: 'Santiago Ordonez Merizalde',
320
+ color: 'transparent',
321
+ sx: {
322
+ textShadow: `
323
+ 0 0 8px rgba(180, 0, 255, 0.8),
324
+ 0 0 15px rgba(140, 0, 255, 0.6),
325
+ 0 0 25px rgba(200, 100, 255, 0.5)
326
+ `,
327
+ background: 'linear-gradient(90deg, #d9a7ff, #b58eff, #7f6fff, #b58eff, #d9a7ff)',
328
+ '-webkit-background-clip': 'text',
329
+ backgroundSize: '300% 300%',
330
+ animation: 'purpleFlow 6s ease-in-out infinite',
331
+ '@keyframes purpleFlow': {
332
+ '0%': { backgroundPosition: '0% 50%' },
333
+ '50%': { backgroundPosition: '100% 50%' },
334
+ '100%': { backgroundPosition: '0% 50%' }
335
336
+ filter: 'drop-shadow(0 0 4px rgba(190, 80, 255, 0.6))'
337
+ }
338
339
];
340
0 commit comments