Skip to content

Commit

Permalink
Update colours to make tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
brookback committed Mar 1, 2023
1 parent 9940e5e commit daafd79
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion colors.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable */
/* Updated at Fri, 29 Apr 2022 07:50:25 GMT*/
/* Updated at Wed, 01 Mar 2023 13:30:33 GMT*/
module.exports = {
'blue-10': '#6fb7ff',
'blue-20': '#4aa4fe',
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ BUTTONS

&.dark {
--bg: transparent;
--text: var(--blue-40);
--text: var(--blue-30);
--text-active: color(theme('colors.blue-50') shade(10%));
--text-hover: var(--blue-50);

Expand Down
4 changes: 2 additions & 2 deletions test/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h1>A heading</h1>

<p class="block" style="color: #000000; background-color: var(--green-50)">green-50</p>

<p class="block" style="color: #ffffff; background-color: var(--green-60)">green-60</p>
<p class="block" style="color: #000000; background-color: var(--green-60)">green-60</p>

<p class="block" style="color: #ffffff; background-color: var(--green-70)">green-70</p>

Expand All @@ -114,7 +114,7 @@ <h1>A heading</h1>

<p class="block" style="color: #0e1f29; background-color: var(--grey-60)">grey-60</p>

<p class="block" style="color: #ffffff; background-color: var(--grey-70)">grey-70</p>
<p class="block" style="color: #000000; background-color: var(--grey-70)">grey-70</p>

<p class="block" style="color: #ffffff; background-color: var(--grey-80)">grey-80</p>

Expand Down

0 comments on commit daafd79

Please sign in to comment.