tailwind.config.js 323 B

1234567891011121314151617181920
  1. /** @type {import('tailwindcss').Config} */
  2. import typography from '@tailwindcss/typography'
  3. export default {
  4. content: [
  5. "./index.html",
  6. "./src/**/*.{vue,js,ts,jsx,tsx}",
  7. ],
  8. theme: {
  9. extend: {
  10. colors: {
  11. primary: 'var(--brand-main)',
  12. }
  13. },
  14. },
  15. plugins: [
  16. typography,
  17. ],
  18. }