Skip to content

Commit

Permalink
chore(uux): 913 notification status colors change
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-mmaul committed Jun 28, 2024
1 parent 90b7c8f commit 858face
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
}

&--CANCELED {
@apply bg-declinedLight text-declinedDark before:bg-declinedDark;
@apply bg-canceledLight text-canceledDark before:bg-canceledDark;
}

&--CLOSED {
Expand All @@ -192,15 +192,15 @@
}

&--SENT {
@apply bg-pendingLight text-pendingDark before:bg-pendingDark;
@apply bg-receivedLight text-receivedDark before:bg-receivedDark;
}

&--ACCEPTED {
@apply bg-confirmedLight text-confirmedDark before:bg-confirmedDark;
}

&--ACKNOWLEDGED {
@apply bg-receivedLight text-receivedDark before:bg-receivedDark;
@apply bg-pendingLight text-pendingDark before:bg-pendingDark;
}

&--DECLINED {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
}

&--CANCELED {
@apply bg-declinedLight text-declinedDark before:bg-declinedDark;
@apply bg-canceledLight text-canceledDark before:bg-canceledDark;
}

&--CLOSED {
Expand All @@ -51,15 +51,15 @@
}

&--SENT {
@apply bg-pendingLight text-pendingDark before:bg-pendingDark;
@apply bg-receivedLight text-receivedDark before:bg-receivedDark;
}

&--ACCEPTED {
@apply bg-confirmedLight text-confirmedDark before:bg-confirmedDark;
}

&--ACKNOWLEDGED {
@apply bg-receivedLight text-receivedDark before:bg-receivedDark;
@apply bg-pendingLight text-pendingDark before:bg-pendingDark;
}

&--DECLINED {
Expand Down
3 changes: 3 additions & 0 deletions frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ module.exports = {
confirmedLight: '#d9f2d9',
confirmedDark: '#0b5e0b',

canceledLight: '#ffa6a6',
canceledDark: '#800000',

declinedLight: '#ffd9d9',
declinedDark: '#b30000',

Expand Down

0 comments on commit 858face

Please sign in to comment.