mirror of https://github.com/onweru/compose.git

weru
11.08.2020 9a30e948063506d600b835ef11924fd56178b2f3
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
html
  --light: #fff
  --dark: rgb(28,28,30)
  --haze: #f2f5f2
  --bubble: rgb(32,32,34)
  --accent: var(--gray)
  --bg: var(--light)
  --overlay: var(--light)
  --text: var(--dark)
  --font: 'Metropolis', sans-serif
  --border-color: #eee
  --theme: rgb(52,199,89)
  // --theme:rgb(52,199,89)
 
  &.has_magic
    @media (prefers-color-scheme: dark)
      --theme: rgb(48,209,88)
      --bg: var(--dark)
      --text: var(--light)
      --accent: var(--bubble)
      --overlay: var(--bubble)
      --border-color: transparent
      *
        box-shadow: none !important
 
%narrow
  max-width: 750px
  margin: 0 auto