1
Fork 0
mirror of https://github.com/RGBCube/color.v synced 2025-07-29 08:57:46 +00:00
No description
Find a file
2023-01-14 14:25:44 +03:00
.github/workflows chore: add tests 2023-01-14 14:24:53 +03:00
src chore: add tests 2023-01-14 14:24:53 +03:00
.editorconfig Initial commit 2022-11-18 19:41:26 +03:00
.gitattributes Initial commit 2022-11-18 19:41:26 +03:00
.gitignore Add chatgpt to ignore 2022-12-16 22:58:36 +03:00
LICENSE.md Update and rename LICENSE to LICENSE.md 2022-12-08 18:16:20 +03:00
README.md readme: fix codeblock types 2023-01-14 14:25:44 +03:00
v.mod Unbump version 2023-01-09 19:32:30 +03:00

color.v

Docs

A V library to aid in printing colored text to the terminal.

Installation

After doing these, you can use the module in your V programs by importing rgbcube.color.

Via VPM

v install RGBCube.color

Via Git

git clone https://github.com/RGBCube/color.v ~/.vmodules/rgbcube/color

Examples

Here are some examples to get you started:

Basic

import rgbcube.color

color.red.println('Hello, World!')
color.cyan.println_bg('Hello, World!')
color.bold.println('Hello, World!')

Advanced

import rgbcube.color

brush := color.new_brush(
    fg: color.rgb(0, 0, 0)
    bg: color.hex(0xffffff)
    styles: [color.bold, color.underline, color.italic]
)

brush.println('Hello, World!')

License

MIT License

Copyright (c) 2022-present RGBCube

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.