| 1234567891011121314151617181920 |
- /** @type {import('tailwindcss').Config} */
- import typography from '@tailwindcss/typography'
- export default {
- content: [
- "./index.html",
- "./src/**/*.{vue,js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {
- colors: {
- primary: 'var(--brand-main)',
- }
- },
- },
- plugins: [
- typography,
- ],
- }
|