| 12345678910111213141516 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
- theme: {
- extend: {
- colors: {
- primary: '#8B4513',
- secondary: '#D2B48C',
- },
- fontFamily: {
- sans: ['Noto Serif SC', 'serif'],
- },
- },
- },
- plugins: [],
- };
|