Skip to content

Commit

Permalink
Use HSL
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Arellano committed Jun 30, 2024
1 parent 2d35b95 commit 8408f9e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/css/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$teal: #21ccb9;
$gray: rgb(60, 60, 60);
$gray-light: #4d4d4d;
$gray-light-translucent: rgba(186, 186, 186, 0.7);
$white: white;
$black: black;
$black-translucent: rgba(0, 0, 0, 0.2);
$teal: hsl(173, 72%, 46%);
$white: hsl(0, 0%, 100%);
$gray: hsl(0, 0%, 23.53%);
$gray-light: hsl(0, 0%, 30%);
$gray-light-translucent: hsla(0, 0%, 73%, 0.7);
$black: hsl(0, 0%, 0%);
$black-translucent: hsla(0, 0%, 0%, 0.2);

0 comments on commit 8408f9e

Please sign in to comment.