tailwind.config.js 439 B

1234567891011121314151617181920
  1. // Copyright (C) 2012-2021 Zammad Foundation, https://zammad-foundation.org/
  2. const formsPlugin = require('@tailwindcss/forms')
  3. module.exports = {
  4. content: [
  5. './app/frontend/**/*.{js,jsx,ts,tsx,vue}',
  6. './app/views/mobile/index.html.erb',
  7. ],
  8. theme: {
  9. extend: {
  10. colors: {
  11. // TODO: only first testing colors
  12. darker: '#25262d',
  13. dark: '#2c2d35',
  14. },
  15. },
  16. },
  17. plugins: [formsPlugin],
  18. }