styled links

This commit is contained in:
synth-ruiner 2017-12-23 21:17:31 +00:00
parent 807ad242de
commit 6c0e705005
2 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,9 @@ body {
background-color: #594a54; background-color: #594a54;
color: #d3cbd0; color: #d3cbd0;
} }
a {
color: #f69f8f;
}
canvas { canvas {
image-rendering: pixelated; image-rendering: pixelated;
} }

View File

@ -8,6 +8,7 @@
@light: #d3cbd0; @light: #d3cbd0;
@dark: #594a54; @dark: #594a54;
@accent: #f69f8f; // pink
* { * {
box-sizing: border-box; box-sizing: border-box;
@ -20,6 +21,10 @@ html, body {
color: @light; color: @light;
} }
a {
color: @accent;
}
canvas { canvas {
image-rendering: pixelated; image-rendering: pixelated;
} }