module.exports = {
  purge: {
      content: [
      '../../public/*.html',
      '../../public/**/*.html',
    ],
    safelist: [
      '.modal-overlay',
      '.modal',
      '.modal-header',
      '.modal-title',
      '.modal-closer',
      '.modal-body',
    ]
  },
  darkMode: false, // or 'media' or 'class'
  theme: {
    extend: {},
  },
  variants: {
    extend: {
      fontSize: ["hover"],
      lineHeight: ["hover"]
    },
  },
  plugins: [],
}