27 lines
457 B
CSS
27 lines
457 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
color-scheme: light;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
background-color: #fbf9f6;
|
|
color: #1b1c1a;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* Terracotta focus ring — SPEC-DS-001 interactive focus style */
|
|
*:focus-visible {
|
|
outline: 2px solid #8b4b2f;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
* {
|
|
animation: none !important;
|
|
transition: none !important;
|
|
}
|
|
}
|