Skip to content

Commit

Permalink
fix: fixes one-aalam#4
Browse files Browse the repository at this point in the history
  • Loading branch information
one-aalam committed Oct 6, 2021
1 parent ef2f2cb commit 6ebe54f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,34 @@ module.exports = {
sans: ['Fira Code', ...fontFamily.sans],
},
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
a: {
color: theme('colors.primarySecondaryDark'),
'&:hover': {
color: theme('colors.primary'),
},
},
blockquote: {
color: theme('colors.primary'),
borderColor: theme('colors.primaryDark')
},
'blockquote > p::before, p::after': {
color: theme('colors.primaryDark'),
},
h1: {
color: theme('colors.primarySecondaryDark'),
},
h2: {
color: theme('colors.primarySecondaryDark'),
},
h3: {
color: theme('colors.primarySecondaryDark'),
},
}
},
}),
}
},
plugins: [
Expand Down

0 comments on commit 6ebe54f

Please sign in to comment.