Skip to content

Commit

Permalink
fix some naming for colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjamuffin99 committed Apr 12, 2024
1 parent e311da8 commit fc5b867
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions content/_scss/flixel-colors.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$flixel-dark-blue: #3b43ff;
$flixel-yello: #ffbf37;
$flixel-yellow: #ffbf37;
$flixel-red: #ff2346;
$flixel-green: #00b92b;
$flxiel-light-blue: #0bc8ff;
$flixel-light-blue: #0bc8ff;
42 changes: 21 additions & 21 deletions content/_scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@import "./mixins/helpers.scss";
@import "./footer.scss";
@import url("https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css");
@import "./darkmode-style.scss";
@import "./color-styles.scss";
@import "./flixel-colors.scss";

* {
Expand Down Expand Up @@ -257,29 +257,29 @@ a.header-anchor::before {
.title:before {
background-image: -webkit-linear-gradient(
left,
#ffbf37 0%,
#ffbf37 20%,
#ff2346 20%,
#ff2346 40%,
#00b92b 40%,
#00b92b 60%,
#3b43ff 60%,
#3b43ff 80%,
#0bc8ff 80%,
#0bc8ff 100%
$flixel-yellow 0%,
$flixel-yellow 20%,
$flixel-red 20%,
$flixel-red 40%,
$flixel-green 40%,
$flixel-green 60%,
$flixel-dark-blue 60%,
$flixel-dark-blue 80%,
$flixel-light-blue 80%,
$flixel-light-blue 100%
);
background-image: -moz-linear-gradient(
left center,
#ffbf37 0%,
#ffbf37 20%,
#ff2346 20%,
#ff2346 40%,
#00b92b 40%,
#00b92b 60%,
#3b43ff 60%,
#3b43ff 80%,
#0bc8ff 80%,
#0bc8ff 100%
$flixel-yellow 0%,
$flixel-yellow 20%,
$flixel-red 20%,
$flixel-red 40%,
$flixel-green 40%,
$flixel-green 60%,
$flixel-dark-blue 60%,
$flixel-dark-blue 80%,
$flixel-light-blue 80%,
$flixel-light-blue 100%
);
bottom: -6px;
content: "";
Expand Down

0 comments on commit fc5b867

Please sign in to comment.