Spaces:
Sleeping
Sleeping
File size: 382 Bytes
0fff343 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | @tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
background-color: #FAFAF7;
color: #23303A;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Calmer focus rings to match the palette. */
:focus-visible {
outline: 2px solid #3A6B7E;
outline-offset: 2px;
}
|