Welcome to mirror list, hosted at ThFree Co, Russian Federation.

theme_gray.scss « themes « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3112aaef227401a2c6024fd53556fe57e531afaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@import './theme_helper';

body {
  &.ui-gray {
    @include gitlab-theme(
      $gray-200,
      $gray-300,
      $gray-500,
      $gray-900,
      $white
    );

    .page-with-super-sidebar {
      @include gitlab-theme-super-sidebar(
        $gray-50,
        $gray-100,
        $gray-900,
        $gray-900,
      );
    }
  }
}