summaryrefslogtreecommitdiff
path: root/sass/global.scss
blob: a229bf9889cc84d3cd72286008b8ac144898df13 (plain) (blame)
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
@use "./uchu/core/mixin" as mixin;

@include mixin.font-plus-italics(400, "/type/sans", "webb sans");
@include mixin.font-plus-italics(600, "/type/sans", "webb sans");

:root {
  --color-background: var(--uchu-gray-1);
  --color-border: var(--uchu-gray-3);
  --color-foreground: var(--uchu-yin-8);
  --font-mono: "webb mono";
  --font-sans: "webb sans";
  --font-size: 16px;
  --padding: 0.5rem;
}

html,
body {
  width: 100%; height: 100%;
}

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  font-size: var(--font-size);
  font-variant-numeric: slashed-zero tabular-nums;
  padding: var(--line-height) var(--line-height) calc(var(--line-height) * 2);
}