Change dark mode background color

990f259f99bb09fbfe1e36f29be5a8c114500918

Tucker McKnight <tmcknight@instructure.com> | Wed Feb 04 2026

Change dark mode background color

Trying to increase contrast here.
scss/design-board.scss:27
Before
26
27
28
29
30
31
$border-color: $lightblue;
$border-width: 2px;

$body-bg-dark: #060c2b;

@import "../node_modules/bootstrap/scss/bootstrap";
After
26
27
28
29
30
31
$border-color: $lightblue;
$border-width: 2px;

$body-bg-dark: #040e1e;

@import "../node_modules/bootstrap/scss/bootstrap";
scss/design-board.scss:218
Before
217
218
219
220
221
222
    justify-content: center;

    span {
      margin: 0.5rem;
    }
  }
}
After
217
218
219
220
221
222
    justify-content: center;

    span {
      margin: 0 0.5rem;
    }
  }
}