14 lines
297 B
CSS
14 lines
297 B
CSS
html {
|
|
font-size: var(--font-size-base);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-geist-sans);
|
|
font-weight: var(--typo-weight-normal);
|
|
color: var(--color-text-primary);
|
|
background-color: var(--color-surface-base);
|
|
}
|
|
|