tailwind.config.js 538 B

123456789101112131415161718192021
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./*.html', './pages/**/*.html', './src/**/*.{js,ts}'],
  4. theme: {
  5. extend: {
  6. fontFamily: {
  7. sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'sans-serif']
  8. },
  9. colors: {
  10. brand: {
  11. DEFAULT: '#000000',
  12. hover: '#1a1a1a'
  13. }
  14. },
  15. transitionProperty: {
  16. colors: 'color, background-color, border-color, text-decoration-color, fill, stroke'
  17. }
  18. }
  19. },
  20. plugins: []
  21. }