tailwind.config.js 321 B

123456789101112131415161718
  1. module.exports = {
  2. content: [
  3. './index.html',
  4. './src/**/*.{vue,js,ts,jsx,tsx}',
  5. '../../packages/shared-components/src/**/*.{vue,js,ts,jsx,tsx}'
  6. ],
  7. theme: {
  8. extend: {
  9. colors: {
  10. primary: '#1e3a5f',
  11. accent: '#f5a623'
  12. }
  13. }
  14. },
  15. corePlugins: {
  16. preflight: false
  17. }
  18. };