File size: 614 Bytes
7601c3d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8e23335
 
7601c3d
8e23335
 
7601c3d
 
8e23335
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
: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);
}