summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/page_bundles/ide_themes/_dark.scss
blob: 41f9a8e6db7997154dc8fe16c362f91bc3ac1081 (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
// -------
// Please see `app/assets/stylesheets/page_bundles/ide_themes/README.md` for a guide on contributing new themes
// -------
.ide.theme-dark {
  --ide-border-color: #1d1f21;
  --ide-border-color-alt: #333;
  --ide-highlight-accent: #fff;
  --ide-text-color: #ccc;
  --ide-text-color-secondary: #ccc;
  --ide-background: #333;
  --ide-background-hover: #2d2d2d;
  --ide-highlight-background: #252526;
  --ide-link-color: #428fdc;
  --ide-footer-background: #060606;

  --ide-input-border: #868686;
  --ide-input-background: transparent;
  --ide-input-color: #fff;

  --ide-btn-default-background: transparent;
  --ide-btn-default-border: #bfbfbf;
  --ide-btn-default-hover-border: #d8d8d8;
  --ide-btn-default-hover-border-width: 2px;
  --ide-btn-default-focus-box-shadow: 0 0 0 1px #bfbfbf;

  --ide-btn-primary-background: #1068bf;
  --ide-btn-primary-border: #428fdc;
  --ide-btn-primary-hover-border: #63a6e9;
  --ide-btn-primary-hover-border-width: 2px;
  --ide-btn-primary-focus-box-shadow: 0 0 0 1px #63a6e9;

  --ide-btn-success-background: #217645;
  --ide-btn-success-border: #108548;
  --ide-btn-success-hover-border: #2da160;
  --ide-btn-success-hover-border-width: 2px;
  --ide-btn-success-focus-box-shadow: 0 0 0 1px #2da160;

  --ide-btn-disabled-background: transparent;
  --ide-btn-disabled-border: rgba(223, 223, 223, 0.24);
  --ide-btn-disabled-hover-border: rgba(223, 223, 223, 0.24);
  --ide-btn-disabled-hover-border-width: 1px;
  --ide-btn-disabled-focus-box-shadow: 0 0 0 0 transparent;
  --ide-btn-disabled-color: rgba(145, 145, 145, 0.48);

  --ide-dropdown-background: #404040;
  --ide-dropdown-hover-background: #525252;

  --ide-dropdown-btn-hover-border: #{$gray-200};
  --ide-dropdown-btn-hover-background: #{$gray-900};

  --ide-file-row-btn-hover-background: #{$gray-800};

  --ide-diff-insert: rgba(155, 185, 85, 0.2);
  --ide-diff-remove: rgba(255, 0, 0, 0.2);

  --ide-animation-gradient-1: #{$gray-800};
  --ide-animation-gradient-2: #{$gray-700};
}