Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/gutenberg/table/deps.ts>color.rgb24

📝 Complete, correct, and thoroughly tested string manipulation library.
Latest
function color.rgb24
import { color } from "https://deno.land/x/gutenberg@0.1.5/table/deps.ts";
const { rgb24 } = color;

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

To produce the color magenta:

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

Parameters

str: string
color: number | Rgb

Returns

string