feat: add visual polish — Inter font, animations, colored shadows, hover effects

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 22:35:00 -05:00
parent a1107f434d
commit 908a312aa5
5 changed files with 35 additions and 10 deletions

View File

@@ -1,14 +1,36 @@
@import "tailwindcss";
@theme {
--font-sans: 'Inter', system-ui, sans-serif;
}
@keyframes pulse-glow {
0%, 100% {
box-shadow: 0 0 8px rgba(6, 182, 212, 0.2);
box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}
50% {
box-shadow: 0 0 16px rgba(6, 182, 212, 0.4);
box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}
}
.animate-pulse-glow {
animation: pulse-glow 2s ease-in-out infinite;
}
/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #2a2d37;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #3a3d47;
}