Retro Hacker Styles

Published: 5/16/2024

Tags: [object Object], [object Object], [object Object], [object Object]


Styling with CSS

We recently applied some retro hacker styles to this blog using CSS variables and a monospaced font.

Here’s a snippet of the CSS:

:root {
  --background-color: #282a36;
  --text-color: #f8f8f2;
  --link-color: #bd93f9;
  --hover-color: #ff79c6;
  --font-family: 'Fira Code', monospace;
}

It uses a dark background, light text, and specific colors inspired by the Dracula theme.