21 lines
488 B
JavaScript
21 lines
488 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'primary': '#647C90', // Slate blue
|
|
'secondary': '#2C4A3E', // Forest green
|
|
'accent': {
|
|
'snow': '#F5F7F9', // Snow white
|
|
'mountain': '#4A5568', // Mountain gray
|
|
'lake': '#A4C3D2', // Alpine lake blue
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|