Skip to content

Commit

Permalink
Tweak darken values to be closer to designs
Browse files Browse the repository at this point in the history
  • Loading branch information
MisRob committed Aug 21, 2024
1 parent 47166e7 commit 38bf1f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/styles/darkenColors.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ import Color from 'color';

export function darken1(color) {
return Color(color)
.darken(0.15)
.darken(0.19)
.hex();
}

export function darken2(color) {
return Color(color)
.darken(0.3)
.darken(0.4)
.hex();
}

export function darken3(color) {
return Color(color)
.darken(0.45)
.darken(0.58)
.hex();
}

0 comments on commit 38bf1f7

Please sign in to comment.