Skip to content

Commit

Permalink
Update colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ameenalasady committed Jul 6, 2024
1 parent bd24b94 commit 39a5d9f
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 11 deletions.
21 changes: 21 additions & 0 deletions public/darkPic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 7 additions & 6 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ html {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 4.3em;
margin-bottom: 3em;
}

.modiv {
Expand All @@ -68,6 +68,7 @@ html {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 2em;
}

.moimg {
Expand All @@ -89,7 +90,7 @@ html {
}

.highlighted_word {
color: #b8004d;
color: #ff9fe1;
}

.paragraph {
Expand Down Expand Up @@ -147,7 +148,7 @@ html {

.getstarted {
font-size: 2em;
color: #b8004d;
color: #ff9fe1;
font-weight: bold;
}

Expand All @@ -160,8 +161,8 @@ html {
.startedarrow {
width: 50px;
margin-top: 4px;
filter: invert(9%) sepia(91%) saturate(7372%) hue-rotate(329deg)
brightness(81%) contrast(101%);
filter: brightness(0) saturate(100%) invert(90%) sepia(11%) saturate(5273%)
hue-rotate(283deg) brightness(107%) contrast(106%);
}

.welcometo {
Expand Down Expand Up @@ -299,7 +300,7 @@ h2 {
} */

.footer a {
color: #b8004d;
color: #ff9fe1;
}

.footercontainer {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ThemeProvider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const theme = createTheme({
palette: {
mode: "dark",
primary: {
main: "#b8004d",
main: "#FF9FE1",
},
background: {
default: "#000000",
Expand Down
14 changes: 12 additions & 2 deletions src/components/TrackStatusPopup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,22 @@ const TrackStatusPopup = ({ open, handleClose, reason }) => {
p: 4,
}}
>
<Typography id="modal-modal-title" variant="h6" component="h2">
<Typography
id="modal-modal-title"
variant="h6"
component="h2"
style={{ color: "white" }}
>
{reason ? "Error" : "Success!"}
</Typography>
<Typography id="modal-modal-description" sx={{ mt: 2 }}>
<Typography
id="modal-modal-description"
sx={{ mt: 2 }}
style={{ color: "white" }}
>
{reason ? reason : "Your request was made successfully."}
</Typography>

<Button
variant="contained"
color="primary"
Expand Down
2 changes: 1 addition & 1 deletion src/components/UniverseatyInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const UniverseatyInfo = () => {
<div className="modivcontainer">
<div className="modiv">
<div className="moimgcontainer">
<img className="moimg" src="template.png" alt="templateimg" />
<img className="moimg" src="darkPic.svg" alt="templateimg" />
</div>

<div className="motext">
Expand Down
Loading

0 comments on commit 39a5d9f

Please sign in to comment.