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",
|
|
|
|
},
|
|
|
|
},
|
2023-12-13 22:43:47 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|
|
|
|
|