Skip to content

Commit

Permalink
Rollback primary colour and add primary-alt
Browse files Browse the repository at this point in the history
  • Loading branch information
GilOliveira committed Aug 7, 2024
1 parent f4a82e4 commit b6420ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ h3,
.course-card__title {
display: grid;
align-items: center;
background-color: #f35c19;
background-color: $accent-alt;
margin-top: 20px;
height: 60px;
text-transform: uppercase;
Expand All @@ -196,7 +196,7 @@ h3,
text-align: center;
}
.more-link a {
color: #91522f;
color: $accent-alt;
font-weight: bold;
text-decoration: none;
}
Expand Down Expand Up @@ -282,7 +282,7 @@ img.image-style-article-header {
font-family: "Roboto Slab", sans-serif;
font-weight: 300;
text-decoration: none;
color: $accent-dark;
color: $accent-alt;
font-size: 1.75em;
}

Expand Down
3 changes: 2 additions & 1 deletion scss/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
$primary-shade: #444041;
$primary-light: tint-color($primary-shade, 37%);
$primary-dark: shade-color($primary-shade, 12%);
$accent-shade: #d46e3B;
$accent-shade: #f35a19;
$accent-light: tint-color($accent-shade, 37%);
$accent-dark: shade-color($accent-shade, 12%);
$accent-alt: #91522f;
// Reassign color vars to semantic color scheme
$red: #dc3545;
$yellow: #ffc107;
Expand Down

0 comments on commit b6420ff

Please sign in to comment.