aboutsummaryrefslogtreecommitdiffstats
path: root/assets/_variables.scss
blob: 55adef06a79419b18284fd314d62eac6ad870625 (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
// Themes
@mixin theme-light {
  --gray-100: #fff5db;
  --gray-200: #f2e6c1;
  --gray-500: #e5dab7;

  --color-link: #29876e;
  --color-visited-link: #29876e;

  --body-background: #fffbf2;
  --body-font-color: #000;

  --icon-filter: none;

  --hint-color-info: #6bf;
  --hint-color-warning: #fd6;
  --hint-color-danger: #f66;
}

@mixin theme-dark {
  --gray-100: rgba(255, 255, 255, 0.1);
  --gray-200: rgba(255, 255, 255, 0.2);
  --gray-500: rgba(255, 255, 255, 0.5);

  --color-link: #80e5ca;
  --color-visited-link: #80e5ca;

  --body-background: #363f54;
  --body-font-color: #fff;

  --icon-filter: brightness(0) invert(1);

  --hint-color-info: #6bf;
  --hint-color-warning: #fd6;
  --hint-color-danger: #f66;
}