25 lines
518 B
Plaintext
25 lines
518 B
Plaintext
serve_stylesheet :: (res: *Response) {
|
|
set_header(res, "Content-Type", "text/stylesheet");
|
|
res.body = stylesheet;
|
|
}
|
|
|
|
stylesheet : string = #string DONE
|
|
:root {
|
|
--ink: #050505;
|
|
--paper: #FAFAFA;
|
|
--gold: #C5A059;
|
|
--gold-dim: #E0D0B0;
|
|
}
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@452&family=Prata&display=swap');
|
|
|
|
body {
|
|
font-family: "Prata", serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
background-color: var(--paper);
|
|
color: var(--gold);
|
|
}
|
|
|
|
DONE
|