From 325528036d4f821919dd52cb2f47caa3b72f109a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lenon?= Date: Thu, 24 Aug 2023 18:00:02 +0100 Subject: [PATCH] feat(docs): add more explanation about log engine --- docs/the-basics/helpers.mdx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/the-basics/helpers.mdx b/docs/the-basics/helpers.mdx index 54557cc2..a42975cf 100644 --- a/docs/the-basics/helpers.mdx +++ b/docs/the-basics/helpers.mdx @@ -164,7 +164,12 @@ only in helpers that **`Color`** provides different from **chalk**. #### `Color::apply()` -Apply the color engine of Athenna to some string: +Apply the color engine of Athenna to some string. The color +engine execute [chalk](https://www.npmjs.com/package/chalk) +methods under the hood. In the example bellow we are executing +`yellow()` and `bold()` method of +[chalk](https://www.npmjs.com/package/chalk) in the word +`World`: ```typescript import { Color } from '@athenna/common'