Skip to content

Commit

Permalink
chore: fix dark mode text color
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya committed Jul 19, 2024
1 parent 21a4fae commit 764c8af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/components/TransactionsTable/TransactionModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ export default function TransactionModal({
className={classNames(
"text-3xl font-medium",
transaction.type == "received"
? "text-green-600 dark:color-green-400"
: "text-orange-600 dark:color-orange-400"
? "text-green-600 dark:text-emerald-500"
: "text-orange-600 dark:text-amber-600"
)}
>
{transaction.type == "sent" ? "-" : "+"}{" "}
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/TransactionsTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ export default function TransactionsTable({
className={classNames(
"text-sm",
type == "incoming"
? "text-green-600 dark:color-green-400"
: "text-orange-600 dark:color-orange-400"
? "text-green-600 dark:text-emerald-500"
: "text-orange-600 dark:text-amber-600"
)}
>
{type == "outgoing" ? "-" : "+"}{" "}
Expand Down

0 comments on commit 764c8af

Please sign in to comment.