Skip to content

Commit

Permalink
[IMP] Uniformize colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Landris18 committed May 1, 2024
1 parent 79f2e93 commit 875be33
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 14 deletions.
34 changes: 21 additions & 13 deletions src/assets/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@
url(../fonts/Lexend/Lexend-Light.ttf) format("woff");
}

$yellow: #edbb28;
$dark: #241f31;
$red: #f12533;
$teal: #527679;
$green: #08ae70;
$blue: #097e91;
$orange: #ff560b;

body {
font-family: "lexend", system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
Expand Down Expand Up @@ -58,7 +66,7 @@ h6,
p,
span,
small {
color: #241f31;
color: $dark;
}

.m-0 {
Expand Down Expand Up @@ -91,17 +99,17 @@ small {
}

fieldset {
border-color: #edbb28 !important;
border-color: $yellow !important;
}

.MuiOutlinedInput-root {
font-family: "lexend" !important;
color: #241f31 !important;
color: $dark !important;
font-size: 15.5px !important;
}

.Mui-focused fieldset.MuiOutlinedInput-notchedOutline {
border-color: #edbb28;
border-color: $yellow;
}

.MuiPickersDay-root,
Expand All @@ -118,17 +126,17 @@ fieldset {
}

.MuiPickersDay-root.Mui-selected {
background-color: #edbb28 !important;
background-color: $yellow !important;
}

.MuiPickersYear-yearButton.Mui-selected {
background-color: #edbb28 !important;
background-color: $yellow !important;
}

.primary-button {
text-transform: none !important;
font-family: "lexend" !important;
background-color: #edbb28 !important;
background-color: $yellow !important;
box-shadow: none !important;
border-radius: 50px !important;
padding: 10px !important;
Expand All @@ -152,7 +160,7 @@ fieldset {
.danger-button {
text-transform: none !important;
font-family: "lexend" !important;
background-color: #f12533 !important;
background-color: $red !important;
box-shadow: none !important;
padding: 10px 15px 10px 15px !important;
}
Expand All @@ -163,7 +171,7 @@ fieldset {
box-shadow: none !important;
border-radius: 50px !important;
padding: 6px 15px 6px 15px !important;
background-color: #527679 !important;
background-color: $teal !important;
font-size: 13px !important;
}

Expand All @@ -173,20 +181,20 @@ fieldset {

.Toastify__toast--info {
font-family: "lexend";
background: #097e91 !important;
background: $blue !important;
}

.Toastify__toast--success {
font-family: "lexend";
background: #08ae70 !important;
background: $green !important;
}

.Toastify__toast--warning {
font-family: "lexend";
background: #f57c00 !important;
background: $yellow !important;
}

.Toastify__toast--error {
font-family: "lexend";
background: #f12533 !important;
background: $red !important;
}
4 changes: 3 additions & 1 deletion src/components/TabMenu/TabMenu.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import '../../assets/styles/index.scss';

.tab-label {
font-family: "lexend" !important;
text-transform: capitalize !important;
Expand All @@ -6,7 +8,7 @@

.MuiTableCell-head {
font-family: "lexend" !important;
color: #527679 !important;
color: $teal !important;
}

.MuiTableCell-body {
Expand Down

0 comments on commit 875be33

Please sign in to comment.