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.

29 lines
687B

  1. module.exports = {
  2. purge: ['./pages/**/*.tsx', './components/**/*.tsx'],
  3. darkMode: 'class', // or 'media' or 'class'
  4. theme: {
  5. extend: {
  6. backgroundColor: theme => ({
  7. ...theme('colors'),
  8. 'primary': '#ad4932',
  9. 'font-special': '#264acb'
  10. }),
  11. backgroundImage: theme => ({
  12. 'film-background': "url('/img/background.png')",
  13. 'mb-film-background': "url('/img/background-mobile.png')",
  14. 'cloud': "url('/img/cloud/cloud1.svg')",
  15. }),
  16. },
  17. fontFamily: {
  18. 'diplay': ['Comic Neue'],
  19. 'body': ['Comic Neue'],
  20. 'sans': ['Comic Neue']
  21. }
  22. },
  23. variants: {
  24. extend: {},
  25. },
  26. plugins: [],
  27. }