anycoder-5df874db / tailwind.config.js
Svenson1974's picture
Upload tailwind.config.js with huggingface_hub
9c516c4 verified
Raw
History Blame Contribute Delete
441 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'marine-blue': '#0a2e38',
'marine-teal': '#008080',
'marine-gold': '#b8860b',
'marine-light': '#e0f7fa',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
}