21 lines
463 B
JavaScript
21 lines
463 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,jsx}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
serif: ['"PT Serif"', 'Georgia', 'serif'],
|
|
sans: ['"IBM Plex Sans"', 'system-ui', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
paper: '#f8f4ec',
|
|
ink: '#1f1a15',
|
|
accent: '#7a3b14',
|
|
muted: '#5b554b',
|
|
rule: '#d6cdb8',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|