File tree 6 files changed +5
-38
lines changed
6 files changed +5
-38
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
import * as React from "react" ;
2
- import type { HeadFC , PageProps } from "gatsby" ;
2
+ import type { PageProps } from "gatsby" ;
3
3
import Layout from "@src/components/layout" ;
4
4
import Seo from "@src/components/Seo" ;
5
5
import BlogList from "@src/components/BlogList" ;
Original file line number Diff line number Diff line change @@ -22,21 +22,21 @@ body.light {
22
22
}
23
23
24
24
body .dark {
25
- @apply bg-gray-900 selection:bg-indigo-500 text-white;
25
+ @apply bg-gray-900 selection:bg-selection-dark text-white;
26
26
}
27
27
28
28
.dark pre [class *= 'language-' ]::-moz-selection ,
29
29
.dark pre [class *= 'language-' ] ::-moz-selection ,
30
30
.dark code [class *= 'language-' ]::-moz-selection ,
31
31
.dark code [class *= 'language-' ] ::-moz-selection {
32
- @apply bg-indigo-500 ;
32
+ @apply bg-selection-dark ;
33
33
}
34
34
35
35
.dark pre [class *= 'language-' ]::selection ,
36
36
.dark pre [class *= 'language-' ] ::selection ,
37
37
.dark code [class *= 'language-' ]::selection ,
38
38
.dark code [class *= 'language-' ] ::selection {
39
- @apply bg-indigo-500 ;
39
+ @apply bg-selection-dark ;
40
40
}
41
41
42
42
.light pre [class *= 'language-' ]::-moz-selection ,
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ module.exports = {
12
12
"font-code-light" : "#859900" ,
13
13
"bg-code-dark" : "#2A2734" ,
14
14
"font-code-dark" : "#FFCC99" ,
15
+ "selection-dark" : "#91AD70"
15
16
} ,
16
17
} ,
17
18
} ,
You can’t perform that action at this time.
0 commit comments