Skip to content

Commit

Permalink
Fix the yellow accent a colours
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdales committed May 5, 2024
1 parent 2823bed commit 743934d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ input[type=reset].pink,
input[type=submit].pink {
--accent-1: var(--pink-2);
--accent-2: var(--pink-3);
--accent-3: var(--pink-3);
--accent-3: var(--pink-4);
--accent-4: var(--pink-8);
}

Expand Down Expand Up @@ -1384,9 +1384,9 @@ input[type=radio].orange {
}
input[type=checkbox].yellow,
input[type=radio].yellow {
--accent-1: var(--yellow-2);
--accent-1: var(--yellow-1);
--accent-2: var(--yellow-2);
--accent-3: var(--yellow-3);
--accent-3: var(--yellow-4);
}
input[type=checkbox].green,
input[type=radio].green {
Expand Down Expand Up @@ -1414,8 +1414,8 @@ input[type=radio].purple {
}
input[type=checkbox].pink,
input[type=radio].pink {
--accent-1: var(--pink-4);
--accent-2: var(--pink-5);
--accent-1: var(--pink-2);
--accent-2: var(--pink-3);
--accent-3: var(--pink-4);
}

Expand Down
10 changes: 5 additions & 5 deletions index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ input[type="submit"] {
&.pink {
--accent-1: var(--pink-2);
--accent-2: var(--pink-3);
--accent-3: var(--pink-3);
--accent-3: var(--pink-4);
--accent-4: var(--pink-8);
}
}
Expand Down Expand Up @@ -336,9 +336,9 @@ input[type="radio"] {
}

&.yellow {
--accent-1: var(--yellow-2);
--accent-1: var(--yellow-1);
--accent-2: var(--yellow-2);
--accent-3: var(--yellow-3);
--accent-3: var(--yellow-4);
}

&.green {
Expand Down Expand Up @@ -366,8 +366,8 @@ input[type="radio"] {
}

&.pink {
--accent-1: var(--pink-4);
--accent-2: var(--pink-5);
--accent-1: var(--pink-2);
--accent-2: var(--pink-3);
--accent-3: var(--pink-4);
}
}
Expand Down

0 comments on commit 743934d

Please sign in to comment.