aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/toast/toast.component.css
diff options
context:
space:
mode:
authorTyler Ferrari <69283684+Sowgro@users.noreply.github.com>2025-04-07 16:50:31 -0400
committerGitHub <noreply@github.com>2025-04-07 16:50:31 -0400
commitdddaceba31730f0c01fd47858b0672c1f664de9b (patch)
treec8c3229c54955a4a037b0ce0a016221e8784af42 /ufund-ui/src/app/components/toast/toast.component.css
parent7635188ed6182a72facd8ab3299f13c7217a8abd (diff)
parent8b64b8bd43f987b924d74d0ea597b7b606ca9357 (diff)
downloadJellySolutions-dddaceba31730f0c01fd47858b0672c1f664de9b.tar.gz
JellySolutions-dddaceba31730f0c01fd47858b0672c1f664de9b.tar.bz2
JellySolutions-dddaceba31730f0c01fd47858b0672c1f664de9b.zip
Merge pull request #31 from RIT-SWEN-261-02/light-mode
Light mode
Diffstat (limited to 'ufund-ui/src/app/components/toast/toast.component.css')
-rw-r--r--ufund-ui/src/app/components/toast/toast.component.css4
1 files changed, 3 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/toast/toast.component.css b/ufund-ui/src/app/components/toast/toast.component.css
index 82e2ff3..5d2a7df 100644
--- a/ufund-ui/src/app/components/toast/toast.component.css
+++ b/ufund-ui/src/app/components/toast/toast.component.css
@@ -20,7 +20,8 @@
display: flex;
flex-direction: row;
padding: 3px 15px;
- background-color: #3a3a3a;
+ color: var(--foreground-color);
+ background-color: var(--secondary-color);
border-radius: 100000px;
gap: 10px;
align-items: center;
@@ -54,4 +55,5 @@
.toast.error {
background-color: #d81a1a;
+ color: white;
}