Update theme to use brand color instead of hardcoded red

This commit is contained in:
2025-01-12 15:29:41 -06:00
parent ea965b6834
commit 937fd33cee
3 changed files with 9 additions and 5 deletions
+5 -1
View File
@@ -2,7 +2,11 @@
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
extend: {
colors: {
brand: "#D40404",
},
},
},
plugins: [],
}