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

x/hex/src/lib/mod.ts>stdx.fmt.colors.rgb24

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
function stdx.fmt.colors.rgb24
import { stdx } from "https://deno.land/x/hex@0.6.5/src/lib/mod.ts";
const { rgb24 } = stdx.fmt.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:

     import { rgb24 } from "https://deno.land/std@0.224.0/fmt/colors.ts";
     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