climbing-dashboard / src /index.css
lewtun's picture
lewtun HF Staff
Build climbing dashboard with RPE and grade tracking
7601c3d
raw
history blame contribute delete
614 Bytes
:root {
--color-primary: #b45309;
--color-secondary: #0f766e;
--color-accent: #2563eb;
--color-bg: #f6f4ef;
--color-bg-soft: #f4efe7;
--color-card: #ffffff;
--color-text: #1f2937;
--color-text-muted: #64748b;
--color-border: #e2d8c8;
--color-danger: #dc2626;
--radius: 8px;
--shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Avenir Next', 'Segoe UI', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: var(--color-bg);
color: var(--color-text);
}