Style changes, dark background color and fix margin issue in md files

3527fab110414e20059c7c07060856d07405f74f

Tucker McKnight <tucker@pangolin.lan> | Sun Feb 01 2026

Style changes, dark background color and fix margin issue in md files

Having a class called "blockquote" is a problem because prism applies
a class called blockquote when syntax highlighting markdown files.
scss/design-board.scss:27
Before
27
After
27
$body-bg-dark: #060c2b;
vendor/main.css:4
Before
4
5
6
7
8
9
10
11
12
13
blockquote {
  margin-left: 0.25rem;
  padding-left: 0.5rem;
  border-left: 3px solid royalblue;
  background: rgba(125, 125, 125, 0.07);
  overflow: hidden;
}
blockquote p {
  margin: 0.5rem;
}
After
4
5
6
7
8
9
10
11
12
13