| 123456789101112131415161718192021 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: ['./*.html', './pages/**/*.html', './src/**/*.{js,ts}'],
- theme: {
- extend: {
- fontFamily: {
- sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'sans-serif']
- },
- colors: {
- brand: {
- DEFAULT: '#000000',
- hover: '#1a1a1a'
- }
- },
- transitionProperty: {
- colors: 'color, background-color, border-color, text-decoration-color, fill, stroke'
- }
- }
- },
- plugins: []
- }
|