www/tailwind.config.mjs

14 lines
269 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
"paper": "#F2F0E3",
"coral": "#F76F53",
"dark": "#202020",
},
},
},
plugins: [],
}