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

20 lines
393B

  1. module.exports = {
  2. purge: ['./pages/**/*.tsx', './components/**/*.tsx'],
  3. darkMode: 'media', // or 'media' or 'class'
  4. backgroundColor: theme => ({
  5. ...theme('colors'),
  6. 'primary': '#e76143',
  7. }),
  8. theme: {
  9. fontFamily: {
  10. 'diplay': ['Comic Neue'],
  11. 'body': ['Comic Neue'],
  12. 'sans': ['Comic Neue']
  13. }
  14. },
  15. variants: {
  16. extend: {},
  17. },
  18. plugins: [],
  19. }