/* Colours the few stylesheets for other code's markup (Trix, uploads, Google Maps) still use */
:root {
  --green: var(--accent, #01da5a); /* follows the accent colour from settings */
  --red: #ed1a25;
  --black: #000e06;
  --white: #fff;
  --dark-gray: #454545;
  --gray: #989e9a;
  --light-gray: #f5f5f5;

  scroll-behavior: smooth;
}

/* Turbo's progress bar, which Turbo draws itself */
.turbo-progress-bar {
  background-color: var(--green);
}
