summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/gitlab-theme.scss
blob: 12cef6f8ea1c7a6bcbba402b110d655cb66e5d2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/**
 * Styles the GitLab application with a specific color theme
 *
 * $color-light  -
 * $color        -
 * $color-darker -
 * $color-dark   -
 */
@mixin gitlab-theme($color-light, $color, $color-darker, $color-dark) {
  .page-with-sidebar {
    .header-logo {
      background-color: $color;
      border-color: $color;

      a {
        color: $color-light;

        h3 {
          color: $color-light;
        }
      }

      &:hover {
        background-color: $color-darker;
        a {
          color: #FFF;
        }
      }
    }

    .collapse-nav a {
      color: #FFF;
      background: $color;
    }

    .sidebar-wrapper {
      background: $color-darker;

      .sidebar-user {
        background: $color-darker;
        color: $color-light;

        &:hover {
          background-color: $color-dark;
          color: #FFF;
          text-decoration: none;
        }
      }
    }

    .nav-sidebar li {
      a {
        color: $color-light;

        &:hover, &:focus, &:active {
          background: $color-dark;
        }

        i {
          color: $color-light;
        }

        .count {
          color: $color-light;
          background: $color-dark;
        }
      }

      &.separate-item {
        border-top: 1px solid $color;
      }

      &.active a {
        color: #FFF;
        background: $color-dark;

        &.no-highlight {
          border: none;
        }

        i {
          color: #FFF
        }
      }
    }
  }
}

$theme-blue: #2980B9;
$theme-charcoal: #333c47;
$theme-graphite: #888888;
$theme-gray: #373737;
$theme-green: #019875;
$theme-violet: #554488;

body {
  &.ui_blue {
    @include gitlab-theme(#BECDE9, $theme-blue, #1970A9, #096099);
  }

  &.ui_charcoal {
    @include gitlab-theme(#c5d0de, $theme-charcoal, #2b333d, #24272D);
  }

  &.ui_graphite {
    @include gitlab-theme(#CCCCCC, $theme-graphite, #777777, #666666);
  }

  &.ui_gray {
    @include gitlab-theme(#979797, $theme-gray, #272727, #222222);
  }

  &.ui_green {
    @include gitlab-theme(#AADDCC, $theme-green, #018865, #017855);
  }

  &.ui_violet {
    @include gitlab-theme(#9988CC, $theme-violet, #443366, #332255);
  }
}