tailwind.config.js 328 B

12345678910111213141516
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  4. theme: {
  5. extend: {
  6. colors: {
  7. primary: '#8B4513',
  8. secondary: '#D2B48C',
  9. },
  10. fontFamily: {
  11. sans: ['Noto Serif SC', 'serif'],
  12. },
  13. },
  14. },
  15. plugins: [],
  16. };