Skip to content

Releases: VDV1llain/fluxura

v0.1.0-alpha1

10 Jan 12:44
093cfd2
Compare
Choose a tag to compare
v0.1.0-alpha1 Pre-release
Pre-release

ADDED

  • RESET as global variable (instead of CLEAR in flux()).
  • ValueError in case custom RGB values are out of bounds.
  • BLINK escape code in Style class

CHANGED

  • How color codes are made (replacing "\033[" with ESC).
  • Refactored flux().

REMOVED

  • CLEAR constant in flux() | | REASON: Global RESET constant is more useful for other things as well
  • CLEAN constant | | REASON: Literally had no use.

v0.1.0-alpha

02 Jan 10:42
dc215b2
Compare
Choose a tag to compare
v0.1.0-alpha Pre-release
Pre-release

ADDED

  • Foreground and Background Colors:

    • Classic color support (e.g., Red, Blue, Green).
    • Light/Bright variants.
    • Custom RGB colors with Color.Fore.CUSTOM(r, g, b) and Color.Back.CUSTOM(r, g, b).
  • Text Styling:

    • Bold, Italic, Underline, Dim, and Strikethrough effects.
    • Clear/reset styles automatically after every print.