tailwind.config.js 196 B

1234567891011121314
  1. module.exports = {
  2. darkMode: "class", // or 'media'
  3. theme: {
  4. extend: {
  5. colors: {
  6. primary: "#124026",
  7. },
  8. },
  9. },
  10. variants: {
  11. theme: {},
  12. },
  13. plugins: [],
  14. };