Skip to content

Commit

Permalink
Clarify usage in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebucaran committed Sep 21, 2021
1 parent d00851d commit 308e190
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Of course, you can nest styles without breaking existing color sequences.
console.log(bold(`I'm ${blue(`da ba ${underline("dee")} da ba`)} daa`))
```

Need to dynamically override color detection? You can do that too.
Need to override automatic color detection? You can do that too.

```js
import { createColors } from "colorette"
Expand Down Expand Up @@ -68,7 +68,7 @@ blue("I'm blue") //=> \x1b[34mI'm blue\x1b[39m

### `isColorSupported`

`true` if your terminal supports color or `false` otherwise. Used internally and handled for you, but exposed for convenience.
`true` if your terminal supports color, `false` otherwise. Used internally and handled for you, but exposed for convenience.

### `createColors({ useColor })`

Expand Down

0 comments on commit 308e190

Please sign in to comment.