fix: Dark mode highlighting of code
This commit is contained in:
parent
ac0d9a5a03
commit
6bda82321b
|
@ -141,7 +141,10 @@ const config: Config = {
|
||||||
},
|
},
|
||||||
blockquote: {
|
blockquote: {
|
||||||
color: theme('colors.gray.800'),
|
color: theme('colors.gray.800'),
|
||||||
}
|
},
|
||||||
|
code: {
|
||||||
|
color: theme('colors.gray.800'),
|
||||||
|
},
|
||||||
};
|
};
|
||||||
const themeStar = {
|
const themeStar = {
|
||||||
color: theme('colors.gray.200'),
|
color: theme('colors.gray.200'),
|
||||||
|
@ -165,7 +168,10 @@ const config: Config = {
|
||||||
},
|
},
|
||||||
blockquote: {
|
blockquote: {
|
||||||
color: theme('colors.gray.300'),
|
color: theme('colors.gray.300'),
|
||||||
}
|
},
|
||||||
|
code: {
|
||||||
|
color: theme('colors.gray.300'),
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue