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

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

  @include conflict-colors('white');

  // Highlight.js theme overrides (https://gitlab.com/gitlab-org/gitlab/-/issues/365167)
  // We should be able to remove the overrides once the upstream issue is fixed (https://github.com/sourcegraph/sourcegraph/issues/23251)
  @include hljs-override('variable', $white-nv);
  @include hljs-override('symbol', $white-ss);
  @include hljs-override('title\\.class_\\.inherited__', $white-no);
  @include hljs-override('title\\.class\\.inherited', $white-no);
  @include hljs-override('title\\.class', $white-nc);
  @include hljs-override('variable\\.constant', $white-no);
  @include hljs-override('variable\\.language', $white-nb);
  @include hljs-override('title\\.function', $white-nf);
  @include hljs-override('params', $white-nb);
}

:root {
  --default-diff-color-deletion: #eb919b;
  --default-diff-color-addition: #a0f5b4;
}