Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
PhoneDroid committed Sep 24, 2022
1 parent f7887c8 commit 4d4a0d7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,18 @@ console.log(hsl); // [ 0 , 100 , 50 ]

<br>

### Hex

```JavaScript
const hex = '#0000FF'; // Blue

const hsl = HSL.fromHex(hex);

console.log(hsl); // [ 240 , 100 , 50 ]
```

<br>

### CMYK

```JavaScript
Expand Down

0 comments on commit 4d4a0d7

Please sign in to comment.