55 font-family : 'Ubuntu Sans Mono' , monospace;
66}
77
8+ : root {
9+ --background-body : # f5f5f5 ;
10+ --text-primary : # 1a1a1a ;
11+ --text-inverted : # ffffff ;
12+ --background-container : # ffffff ;
13+ --background-secondary : # f0f0f0 ;
14+ --background-tertiary : # f8f8f8 ;
15+ --border-primary : # 1a1a1a ;
16+ --background-primary-accent : # 1a1a1a ;
17+ --background-primary-accent-hover : # 333333 ;
18+ --background-input-focus : # f0f0f0 ;
19+ --background-autofill : # e9e9e9 ;
20+ --color-error : # d32f2f ;
21+ --shadow-primary : # 1a1a1a ;
22+ }
23+
24+ @media (prefers-color-scheme : dark) {
25+ : root {
26+ --background-body : # 1c1c1c ;
27+ --text-primary : # f0f0f0 ;
28+ --text-inverted : # 1a1a1a ;
29+ --background-container : # 2a2a2a ;
30+ --background-secondary : # 3a3a3a ;
31+ --background-tertiary : # 252525 ;
32+ --border-primary : # f0f0f0 ;
33+ --background-primary-accent : # f0f0f0 ;
34+ --background-primary-accent-hover : # cccccc ;
35+ --background-input-focus : # 3a3a3a ;
36+ --background-autofill : # 4a4a4a ;
37+ --color-error : # ff6b6b ;
38+ --shadow-primary : # f0f0f0 ;
39+ }
40+ }
41+
842body {
9- background-color : # f5f5f5 ;
10- color : # 1a1a1a ;
43+ background-color : var ( --background-body ) ;
44+ color : var ( --text-primary ) ;
1145 min-height : 100vh ;
1246 display : flex;
1347 align-items : center;
1953 body {
2054 padding : 10px ;
2155 }
22- }
56+ }
0 commit comments