A React/Express online multiplayer Tombola client/server combo.
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.

33 lines
654 B

3 years ago
  1. module.exports = {
  2. purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
  3. darkMode: "media", // or 'media' or 'class'
  4. theme: {
  5. extend: {
  6. margin: {
  7. 13: "3.25rem",
  8. "-13": "-3.25rem",
  9. 26: "6.5rem"
  10. },
  11. width: {
  12. '1/9': `${1/9*100}%`
  13. },
  14. colors: {
  15. primary: {
  16. 100: "#f3d9d9",
  17. 200: "#e7b3b3",
  18. 300: "#dc8c8c",
  19. 400: "#d06666",
  20. 500: "#c44040",
  21. 600: "#9d3333",
  22. 700: "#762626",
  23. 800: "#4e1a1a",
  24. 900: "#270d0d"
  25. },
  26. }
  27. },
  28. },
  29. variants: {
  30. extend: {},
  31. },
  32. plugins: [],
  33. }