Skip to content

Cleanup $perf-bar SCSS variables

Cleanup $perf-bar- SCSS variables from _variables.scss and replace usage with appropriate GitLab UI design token or variable.

$perf-bar-production: $gray-950;
$perf-bar-staging: $theme-indigo-950;
$perf-bar-development: $red-900;
$perf-bar-bucket-bg: $black;
$perf-bar-bucket-box-shadow-from: rgba($white, 0.2);
$perf-bar-bucket-box-shadow-to: rgba($black, 0.25);
$perf-bar-canary-text: $orange-400;
  1. Remove static hex color values for suitable GitLab UI colors
  2. Remove rgba() color functions
  3. See if we can remove variables in general
OSZAR »