tangled
alpha
login
or
join now
brookjeynes.dev
/
core
forked from
tangled.org/core
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
tailwind: apply dark mode css for code blocks
anirudh.fi
10 months ago
e53bef2f
a5dd131f
+1
-9
1 changed file
expand all
collapse all
unified
split
tailwind.config.js
+1
-9
tailwind.config.js
···
22
mono: ["iA Writer Mono S", "ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"],
23
},
24
typography: {
25
-
dark: {
26
-
css: {
27
-
maxWidth: 'none',
28
-
pre: {
29
-
backgroundColor: colors.gray[900],
30
-
color: colors.white,
31
-
},
32
-
},
33
-
},
34
DEFAULT: {
35
css: {
36
maxWidth: 'none',
37
pre: {
38
backgroundColor: colors.gray[100],
39
color: colors.black,
0
40
},
41
},
42
},
···
22
mono: ["iA Writer Mono S", "ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"],
23
},
24
typography: {
0
0
0
0
0
0
0
0
0
25
DEFAULT: {
26
css: {
27
maxWidth: 'none',
28
pre: {
29
backgroundColor: colors.gray[100],
30
color: colors.black,
31
+
'@apply dark:bg-gray-900 dark:text-gray-300 dark:border-gray-700 dark:border': {}
32
},
33
},
34
},