portfolio/tailwind.config.cjs

16 lines
259 B
JavaScript
Raw Normal View History

2023-12-13 22:43:47 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["src/**/*.{html,ts}"],
theme: {
2023-12-13 23:59:54 +00:00
extend: {
colors: {
primary: "white",
secondary: "#f6f8fa",
link: "#8056b2",
},
},
2023-12-13 22:43:47 +00:00
},
plugins: [],
}