Readying for design

This commit is contained in:
Jennie Robinson Faber 2026-03-04 18:24:20 +00:00
parent d73256ca2b
commit fadf473dde
50 changed files with 1478 additions and 1259 deletions

View file

@ -97,11 +97,11 @@ const handleActionClick = async () => {
// Map color names to UButton color props
const getButtonColor = (color) => {
const colorMap = {
orange: "orange",
blue: "blue",
gray: "gray",
orange: "warning",
blue: "primary",
gray: "neutral",
};
return colorMap[color] || "blue";
return colorMap[color] || "primary";
};
// Only show banner if status is not active
@ -117,8 +117,8 @@ const nextAction = computed(() => getNextAction());
const getActionButtonClass = (color) => {
const baseClass = "hover:scale-105 active:scale-95";
const colorClasses = {
orange: "bg-orange-600 text-white hover:bg-orange-700",
blue: "bg-blue-600 text-white hover:bg-blue-700",
orange: "bg-candlelight-600 text-white hover:bg-candlelight-700",
blue: "bg-guild-600 text-white hover:bg-guild-500",
gray: "bg-guild-700 text-guild-100 hover:bg-guild-600",
};
return `${baseClass} ${colorClasses[color] || colorClasses.blue}`;