Skip to main content
Module

x/aleph/std.ts>colors.bgRgb24

The Full-stack Framework in Deno.
Very Popular
Go to Latest
function colors.bgRgb24
import { colors } from "https://deno.land/x/aleph@v0.2.13/std.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:

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

Parameters

str: string
color: number | Rgb

Returns

string