tailwind.config.js 347 B

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