Files
archival-university-website/tailwind-typography-styles.cjs
Jacob Babich 84b5e7ff44 stuff
2021-04-26 02:35:41 -04:00

49 lines
715 B
JavaScript

module.exports = (_theme) => ({
DEFAULT: {
css: {
color: false,
fontWeight: 300,
maxWidth: false,
"@apply text-on-primary": "",
a: {
color: false,
fontWeight: 400,
"@apply text-accent": "",
},
"a:hover, a:focus": {
textDecoration: "underline",
"@apply text-accent-strong": "",
},
strong: {
color: false,
fontWeight: 400,
},
h1: {
color: false,
},
h2: {
color: false,
},
h3: {
color: false,
},
h4: {
color: false,
},
"h1, h2, h3, h4": {
"@apply font-heading": "",
},
"h1 a, h2 a, h3 a, h4 a": {
fontWeight: 500,
textDecoration: "none",
"@apply text-on-primary": "",
},
},
},
});