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

_variables.scss « scss « assets - github.com/onweru/newsroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec2bfabb40611086695d2097c1192f812323e34a (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
:root {
  --color-mode: 'lit';
  --light: #fff;
  --dark: rgb(18,20,24);
  --gray: #f5f5f5;
  --bubble: rgb(16,16,18);
  --accent: var(--gray);
  --bg: var(--light);
  --bg-dark: #000;
  --text: var(--dark);
  --font: 'Metropolis', sans-serif;
  --theme: #04a763;
  --ease: cubic-bezier(.19,1,.22,1);

  @mixin darkmode {
    --color-mode: 'dim';
    --bg: var(--bg-dark);
    --text: var(--light);
    --accent: var(--bubble);
    --theme: rgb(24,175,119);
    *{
      box-shadow: none !important;
    } 
  }
  
  &[data-mode="dim"] {
    @include darkmode;
    .color {
      &_choice {
        &::after {
          transform: translateX(1.75rem) scale(1.67);
        }
      }
    }
  }
  @media (prefers-color-scheme: dark) { 
    &:not(.nodarkmode):not([data-mode="lit"]) {
      @include darkmode;
    }
  }
}