Color Palette

Here is a part of the CSS :root where the rgb values of the colors used on the webpage are kept.

:root {
  --black: 7, 9, 12;
  --antracite-darker: 14, 16, 20;
  --antracite-dark: 22, 26, 30;
  --antracite: 42, 46, 54;
  --winter-evening: 60, 66, 92;
 
  --silver-light: 220, 220, 220;
  --silver: 172, 176, 180;
  --frosted-steel: 105, 117, 129;
 
  --highlight-rgb: 118, 224, 208;
  --highlight-rgb-paler: 111, 204, 198;
  --highlight-dark-rgb: 72, 160, 159;
  --highlight-darker-rgb: 42, 135, 139;
 
  --foreground-rgb: var(--silver-light);
}

And here are some examples of the CSS classes used for background and foreground colors, as well as global styling:

.bg-antracite-dark { background-color: rgb(var(--antracite-darker)); }
/* ... other background color classes */
 
.fg-antracite-dark { color: rgb(var(--antracite-darker)); }
/* ... other foreground color classes */
 
.foreground { color: rgb(var(--foreground-rgb)); }
/* ... other global div classes */

The Palette

Here are some examples of the color palette used on the webpage:

As a note, the darkest foreground color is not designed for use as a background, and vice versa. Nonetheless, I kept the last two blocks to show the contrast.

bg-blackbackground-end

fg-silver-light - foreground

fg-silver

fg-frosted-steel - darkest background color

highlight - links and main brandcolor

highlight-dark

highlight-darker - cv as pdf

bg-antracite-darkerbackground-start

fg-silver-light - foreground

fg-silver

fg-frosted-steel - darkest background color

highlight - links and main brandcolor

highlight-dark

highlight-darker - cv as pdf

bg-antracite-darkfooter-end, cv and blog content bodies

fg-silver-light - foreground

fg-silver

fg-frosted-steel - darkest background color

highlight - links and main brandcolor

highlight-dark

highlight-darker - cv as pdf

bg-antracite

fg-silver-light - foreground

fg-silver

fg-frosted-steel - darkest background color

highlight - links and main brandcolor

highlight-dark

highlight-darker - cv as pdf

bg-frosted-steeldarkest foreground color

fg-silver-light - foreground

fg-silver

fg-frosted-steel - darkest background color

highlight - links and main brandcolor

highlight-dark

highlight-darker - cv as pdf