43 lines
803 B
CSS
43 lines
803 B
CSS
@import "tailwindcss";
|
|
@tailwind utilities;
|
|
|
|
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;
|
|
}
|
|
|
|
/* 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;
|
|
}
|