Skip to content

Commit

Permalink
add hsla() to description
Browse files Browse the repository at this point in the history
  • Loading branch information
fpetrakov committed Aug 27, 2022
1 parent 08f99fa commit 8f8e34e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# convert-to-oklch

CLI tool that converts `rgb()`, `rgba()`, hex and `hsl()` colors to [**oklch()**](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/oklch) in specified CSS files.
CLI tool that converts `rgb()`, `rgba()`, hex, `hsl()` and `hsla()` colors to [**oklch()**](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/oklch) in specified CSS files.

```sh
npx convert-to-oklch ./src/**/*.css
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "convert-to-oklch",
"version": "1.0.6",
"description": "CLI tool that converts rgb(), rgba(), hex and hsl() colors to oklch() in specified CSS files.",
"version": "1.0.7",
"description": "CLI tool that converts rgb(), rgba(), hex, hsl() and hsla() colors to oklch() in specified CSS files.",
"main": "./src/index.js",
"bin": {
"convert-to-oklch": "./src/index.js"
Expand All @@ -21,7 +21,8 @@
"rgb",
"rgba",
"hex",
"hsl"
"hsl",
"hsla"
],
"author": "Fedya Petrakov",
"repository": {
Expand Down

0 comments on commit 8f8e34e

Please sign in to comment.