From 464bdc8e19e838f00cf059c07cc0a1fc68a2dcd7 Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Fri, 9 Aug 2024 13:37:40 +0200 Subject: [PATCH] Update readme once again --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ff17b42..209ace0 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,12 @@ # trmclr -- Easy terminal colors, ported from the Deno standard library. +Easy terminal colors, ported from the Deno standard library. + - Supports Node.js, browsers, Deno, and probably some other environments. - Comes with 45 colors and helpers. - Respects [`NO_COLOR`](http://no-color.org/). - No dependencies. -- Allows for tree-shaking. +- Tree-shakeable. ## Colors and helpers @@ -14,7 +15,7 @@ bgBlack, bgBlue, bgBrightBlack, bgBrightBlue, bgBrightCyan, bgBrightGreen, bgBri ## Usage ```js -import { cyan, bgMagenta } from 'trmcrl'; +import { cyan, bgMagenta } from 'trmclr'; console.log(cyan(bgMagenta('Some text'))); ```