mirror of https://github.com/luizdepra/hugo-coder.git

a1x42
05.33.2019 dea81ca4343531e3a38fcaf9a605df1cacd096aa
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
body.inverted {
 
  color: $fg-color-inverted;
  background-color: $bg-color-inverted;
  
  a {
    color: $link-color-inverted;
  }
 
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: $alt-fg-color-inverted;
  }
 
  code {
    background-color: $alt-bg-color-inverted;
    color: $fg-color-inverted;
  }
 
  pre {
    code {
      background-color: inherit;
      color: inherit;
    }
  }
 
  blockquote {
    border-left: 2px solid $alt-bg-color-inverted;
  }
 
  table td, table th {
    border: 2px solid $alt-fg-color-inverted;
  }
 
}