Skip to content

Commit 00a9e58

Browse files
committed
Added dark colors
1 parent b7d0add commit 00a9e58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ProductCatalog.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const ProductCatalog = ({
103103
>
104104
<div className="flex items-center">
105105
{product.icon && (
106-
<div className="rounded-full p-2 bg-orange-50 mr-2 text-orange-500">
106+
<div className="rounded-full p-2 bg-orange-50 mr-2 text-orange-500 dark:bg-orange-950">
107107
<svg
108108
{...product.icon.attributes}
109109
width={28}
@@ -113,7 +113,7 @@ const ProductCatalog = ({
113113
</div>
114114
)}
115115
{!product.icon && (
116-
<div className="flex items-center justify-center leading-none rounded-full p-2 bg-orange-50 mr-2 text-[color:var(--orange-accent-200)] text-xl font-bold w-11 h-11">
116+
<div className="flex items-center justify-center leading-none rounded-full p-2 bg-orange-50 dark:bg-orange-950 mr-2 text-[color:var(--orange-accent-200)] text-xl font-bold w-11 h-11">
117117
{product.data.name.substr(0, 1)}
118118
</div>
119119
)}

0 commit comments

Comments
 (0)