Skip to content

Commit

Permalink
feat: update transaction icon colors
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanjoshi914 committed Jan 10, 2025
1 parent 75788d4 commit e245562
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions components/icons/FailedTransaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ const FailedTransactionIcon = (props: SvgProps) => {
const colors = {
light: {
rectFill: "#FEE2E2",
pathStroke: "#FB7185",
pathStroke: "#EF4444",
},
dark: {
rectFill: "#450A0A",
pathStroke: "#DC2626",
pathStroke: "#4C0519",
},
};

Expand Down
8 changes: 4 additions & 4 deletions components/icons/PendingTransaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ const PendingTransactionIcon = (props: SvgProps) => {

const colors = {
light: {
rectFill: "#DAE9FD",
pathStroke: "#3B81F5",
rectFill: "#DBEAFE",
pathStroke: "#3B82F6",
},
dark: {
rectFill: "#1E3A89",
pathStroke: "#3B81F5",
rectFill: "#082F49",
pathStroke: "#0EA5E9",
},
};

Expand Down
6 changes: 3 additions & 3 deletions components/icons/ReceivedTransaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ const ReceivedTransactionIcon = (props: SvgProps) => {

const colors = {
light: {
rectFill: "#DBFBE6",
pathStroke: "#22C45E",
rectFill: "#DCFCE7",
pathStroke: "#22C55E",
},
dark: {
rectFill: "#022C22",
pathStroke: "#10B981",
pathStroke: "#14B8A6",
},
};

Expand Down
8 changes: 4 additions & 4 deletions components/icons/SentTransaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ const SentTransactionIcon = (props: SvgProps) => {

const colors = {
light: {
rectFill: "#FEECD4",
pathStroke: "#FA913C",
rectFill: "#FFEDD5",
pathStroke: "#F97316",
},
dark: {
rectFill: "#431407",
pathStroke: "#D97706",
rectFill: "#451A03",
pathStroke: "#F59E0B",
},
};

Expand Down

0 comments on commit e245562

Please sign in to comment.