25 lines
602 B
JavaScript
25 lines
602 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
module.exports = {
|
||
|
|
content: [
|
||
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
||
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
||
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
'harbor-blue': '#001f3f',
|
||
|
|
'harbor-navy': '#1e3a5f',
|
||
|
|
'harbor-gold': '#b48b4e',
|
||
|
|
'harbor-amber': '#9d7943',
|
||
|
|
'harbor-yellow': '#c9a56f',
|
||
|
|
'harbor-light': '#f0f0f0'
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ['Inter', 'sans-serif'],
|
||
|
|
serif: ['Playfair Display', 'serif']
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
}
|