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

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

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