Initial commit.

This commit is contained in:
2025-05-27 16:29:14 -07:00
commit 4f44d5edca
29 changed files with 5230 additions and 0 deletions

49
src/styles.css Normal file
View File

@@ -0,0 +1,49 @@
@import "tailwindcss";
html, body {
height: 100%;
min-height: 100%;
background-color: #0f172a; /* slate-900 */
color: #f1f5f9; /* slate-100 */
font-family: 'Inter', system-ui, sans-serif;
line-height: 1.5;
}
body {
margin: 0;
padding: 0;
min-width: 320px;
}
code, pre {
font-family: 'Fira Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
background: #1e293b; /* slate-800 */
color: #a5b4fc; /* violet-300 */
border-radius: 0.25rem;
padding: 0.2em 0.4em;
}
a {
color: #a5b4fc; /* violet-300 */
text-decoration: underline;
transition: color 0.2s;
}
a:hover, a:focus {
color: #7c3aed; /* violet-600 */
}
/* Remove default outline, but keep focus-visible for accessibility */
:focus:not(:focus-visible) {
outline: none;
}
/* Scrollbar styling for dark mode */
::-webkit-scrollbar {
width: 8px;
background: #1e293b;
}
::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 4px;
}