From 8f8e34e1488b9f0d1d734b4319e7267fff4624fa Mon Sep 17 00:00:00 2001 From: fpetrakov Date: Sat, 27 Aug 2022 12:23:38 +0300 Subject: [PATCH] add hsla() to description --- README.md | 2 +- package.json | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 836b792..033c649 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index a0a4cdf..673d268 100644 --- a/package.json +++ b/package.json @@ -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" @@ -21,7 +21,8 @@ "rgb", "rgba", "hex", - "hsl" + "hsl", + "hsla" ], "author": "Fedya Petrakov", "repository": {