feat: add tailwind.config.js
This commit is contained in:
parent
88730e43e2
commit
07d47a2dec
|
|
@ -0,0 +1,38 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
serif: ['Georgia', 'Cambria', 'Times New Roman', 'serif'],
|
||||
sans: ['Inter', 'system-ui', 'sans-serif'],
|
||||
},
|
||||
colors: {
|
||||
museum: {
|
||||
50: '#faf8f5',
|
||||
100: '#f2ede4',
|
||||
200: '#e3d9c8',
|
||||
300: '#cfc0a3',
|
||||
400: '#b8a07c',
|
||||
500: '#a08660',
|
||||
600: '#8a7050',
|
||||
700: '#705a42',
|
||||
800: '#5c4a38',
|
||||
900: '#4c3e30',
|
||||
},
|
||||
},
|
||||
typography: {
|
||||
DEFAULT: {
|
||||
css: {
|
||||
maxWidth: 'none',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
Loading…
Reference in New Issue