You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
paste/tailwind.config.js

31 lines
694 B
JavaScript

/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
mono: ['"Hack"', ...defaultTheme.fontFamily.mono],
},
typography: {
DEFAULT: {
css: {
h1: {
fontSize: '1.75rem',
marginBottom: '0.8em',
},
h2: {
fontSize: '1.5rem',
marginTop: '0rem',
marginBottom: '0.8em',
},
},
},
},
},
},
darkMode: 'class',
plugins: [require('@tailwindcss/typography')],
}