Skip to content

bgRgb24

1
function bgRgb24(str: string, color: number | Rgb): string

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

To produce the color magenta:

1
import { bgRgb24 } from "./colors.ts";
2
bgRgb24("foo", 0xff00ff);
3
bgRgb24("foo", {r: 255, g: 0, b: 255});

Parameters

ParameterTypeDescription
strstringtext color to apply 24bit rgb to
colornumber | Rgbcode

Returns

string

Source

twitchfy/packages/eventsub/src/logger/colors.ts:450