diff --git a/app/components/skeleton.tsx b/app/components/skeleton.tsx index fb18ced6..fec5bd57 100644 --- a/app/components/skeleton.tsx +++ b/app/components/skeleton.tsx @@ -21,7 +21,7 @@ export function Skeleton({ {...props} width={width} height={height} - className={clsx("rounded animate-pulse bg-body/10", className)} + className={clsx("rounded animate-pulse bg-gray-200", className)} /> ); } diff --git a/app/lib/utils.ts b/app/lib/utils.ts index 36f48ebc..86fa053d 100644 --- a/app/lib/utils.ts +++ b/app/lib/utils.ts @@ -223,11 +223,11 @@ export function parseMenu( } export const INPUT_STYLE_CLASSES = - "appearance-none rounded dark:bg-transparent border focus:border-line/50 focus:ring-0 w-full py-2 px-3 text-body/90 placeholder:text-body/50 leading-tight focus:shadow-outline"; + "appearance-none rounded dark:bg-transparent border focus:border-line focus:ring-0 w-full py-2 px-3 text-body placeholder:text-body leading-tight focus:shadow-outline"; export const getInputStyleClasses = (isError?: string | null) => { return `${INPUT_STYLE_CLASSES} ${ - isError ? "border-red-500" : "border-line/20" + isError ? "border-red-500" : "border-gray-200" }`; }; diff --git a/app/modules/account-address-book.tsx b/app/modules/account-address-book.tsx index 4547417a..d786df6f 100644 --- a/app/modules/account-address-book.tsx +++ b/app/modules/account-address-book.tsx @@ -53,7 +53,7 @@ function Address({
{fullName || "N/A"}
-{phoneNumber?.phoneNumber ?? "N/A"}
-{emailAddress?.emailAddress ?? "N/A"}
Edit
diff --git a/app/modules/button.tsx b/app/modules/button.tsx
index daa044da..a3fe07d9 100644
--- a/app/modules/button.tsx
+++ b/app/modules/button.tsx
@@ -36,7 +36,7 @@ export const Button = forwardRef(
primary: `${baseButtonClasses} border-2 border-btn hover:bg-inv-btn hover:text-inv-btn-content bg-btn text-btn-content`,
secondary: `${baseButtonClasses} border-2 border-btn text-btnTextInverse hover:bg-btn hover:text-btn-content`,
"secondary-white": `${baseButtonClasses} border-2 border-inv-btn text-btn hover:bg-inv-btn hover:text-inv-btn-content`,
- inline: "border-b border-line/10 leading-none pb-1",
+ inline: "border-b border-gray-100 leading-none pb-1",
};
const widths = {
diff --git a/app/modules/cart.tsx b/app/modules/cart.tsx
index ae23944c..fc9c1b16 100644
--- a/app/modules/cart.tsx
+++ b/app/modules/cart.tsx
@@ -161,7 +161,7 @@ function CartLines({
ref={scrollRef}
aria-labelledby="cart-contents"
className={clsx([
- y > 0 ? "border-t border-line/50" : "",
+ y > 0 ? "border-t border-line-subtle" : "",
layout === "page" && "flex-grow md:translate-y-4 lg:col-span-2",
layout === "drawer" && "px-5 pb-5 overflow-auto transition",
])}
@@ -215,9 +215,9 @@ function CartSummary({
@@ -281,7 +281,7 @@ function CartLineItem({ line, layout }: { line: CartLine; layout: Layouts }) {