website-casa-cidalisa/tailwind.config.mjs
2024-09-08 14:26:54 +02:00

19 lines
362 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
seasalt: '#FAFAFA',
green: '#1D462A',
olivine: '#9BBB92',
delftBlue: '#1E3061',
skyBlue: '#8AC0D0',
sunglow: '#FFCA26',
night: '#161618'
}
},
},
plugins: [],
}