Skip to content

Instantly share code, notes, and snippets.

@matthewblott
Created December 5, 2021 20:05
Show Gist options
  • Save matthewblott/7764eff80170eb640746b9041876584a to your computer and use it in GitHub Desktop.
Save matthewblott/7764eff80170eb640746b9041876584a to your computer and use it in GitHub Desktop.
const typography = require('@tailwindcss/typography')
module.exports = {
theme: {
extend: {
typography: {
DEFAULT: {
css: {
color: '#333',
a: {
color: '#3182ce',
':hover': {
color: '#2c5282',
},
},
},
},
}
},
},
plugins: [
typography,
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment