2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-06-04 19:52:03 +00:00

docs: improve existing lunacolors guide (#331)

* docs: extend the lunacolors guide

* docs: add lunacolors change to CHANGELOG

---------

Co-authored-by: sammyette <torchedsammy@gmail.com>
This commit is contained in:
Nadiyar 2025-05-05 00:41:19 +00:00 committed by GitHub
parent e676c095c2
commit 0036932693
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 5 deletions

View File

@ -3,6 +3,8 @@
## Unreleased ## Unreleased
### Added ### Added
- Forward/Right arrow key will fill in hint text (#327) - Forward/Right arrow key will fill in hint text (#327)
### Changed
- Documentation for Lunacolors has been improved, with more information added.
- Values returned by bait hooks will be passed to the `throw` caller - Values returned by bait hooks will be passed to the `throw` caller
## [2.3.4] - 2024-12-28 ## [2.3.4] - 2024-12-28

View File

@ -28,14 +28,17 @@ Colors:
- magenta - magenta
- cyan - cyan
- white - white
Styles: Styles:
- reset
- bold - bold
- dim - dim
- italic - italic
- underline - underline
- invert - invert
For the colors, there are background and bright variants. The background For the colors, there are background and bright variants. Background color
color variants have a suffix of `Bg` and bright has a prefix of `bright`. variants have a `Bg` suffix, while bright variants use the `bright` prefix.
Note that appropriate camel casing has to be applied to them. So bright These can also be combined. Note that appropriate camel casing must be applied.
blue would be `brightBlue` and background cyan would be `cyanBg`. For example, bright blue would be written as `brightBlue`, a cyan background as
`cyanBg`, and combining them would result in `brightBlueBg`.