Skip to main content
Module

x/wait/deps.ts>colors.rgb24

🌀 Minimal terminal spinner
Go to Latest
function colors.rgb24
import { colors } from "https://deno.land/x/wait@0.1.12/deps.ts";
const { rgb24 } = colors;

Set text color using 24bit rgb. color can be a number in range 0x000000 to 0xffffff or an Rgb.

To produce the color magenta:

 rgb24("foo", 0xff00ff);
 rgb24("foo", {r: 255, g: 0, b: 255});

Parameters

str: string

text color to apply 24bit rgb to

color: number | Rgb

code

Returns

string