Skip to content

Instantly share code, notes, and snippets.

@kjmczk
Last active May 30, 2021 05:27
Show Gist options
  • Save kjmczk/8aa1792c64d0fae36c50ce185d8e8412 to your computer and use it in GitHub Desktop.
Save kjmczk/8aa1792c64d0fae36c50ce185d8e8412 to your computer and use it in GitHub Desktop.
tailwind.config.js - MDX Blog with Dark Mode - Medium
// tailwind.config.js
module.exports = {
// ...
theme: {
extend: {
typography: (theme) => ({
dark: {
css: {
color: theme('colors.gray.300'),
h1: {
color: theme('colors.gray.100'),
},
h2: {
color: theme('colors.gray.100'),
},
},
},
}),
},
},
variants: {
extend: {
typography: ['dark'],
},
},
// ...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment