style: Update body and code font styles for improved UI consistency

This commit is contained in:
MayaTheShy
2026-02-20 02:38:08 -05:00
parent 5b89e0432e
commit cfc891d164

View File

@@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0;
@@ -5,13 +7,12 @@
} }
body { body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', font-family: 'Silkscreen', 'Courier New', monospace;
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', -webkit-font-smoothing: none;
sans-serif; -moz-osx-font-smoothing: unset;
-webkit-font-smoothing: antialiased; image-rendering: pixelated;
-moz-osx-font-smoothing: grayscale; background: #2c2c2c;
background: #0a0e1a; color: #d4d4d4;
color: #e0e0e0;
overflow: hidden; overflow: hidden;
} }
@@ -21,5 +22,5 @@ body {
} }
code { code {
font-family: 'Courier New', monospace; font-family: 'Silkscreen', 'Courier New', monospace;
} }