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