tailwind.config.js 239 B

123456789101112
  1. /** @type {import('tailwindcss').Config} */
  2. import { colors, spacing } from './src/lib/config';
  3. export default {
  4. content: ['./src/**/*.{html,js,svelte,ts}'],
  5. theme: {
  6. extend: {
  7. colors,
  8. spacing
  9. }
  10. },
  11. plugins: []
  12. };