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

theme_blue.scss « themes « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06f3e13e99ed34188efa43498a5b038e51fb4152 (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-blue {
    @include gitlab-theme(
      $theme-blue-200,
      $theme-blue-500,
      $theme-blue-700,
      $theme-blue-900,
      $white
    );

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