Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/kia/deps.ts>Colors.bgRgb24

🦕 Simple terminal spinners for Deno
Latest
function Colors.bgRgb24
import { Colors } from "https://deno.land/x/kia@0.4.1b/deps.ts";
const { bgRgb24 } = Colors;

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

To produce the color magenta:

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

Parameters

str: string

text color to apply 24bit rgb to

color: number | Rgb

code

Returns

string