Function bgRgb24

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

    Parameters

    • str: string

      The text color to apply 24bit rgb to

    • color: number | Rgb

      The color code

    Returns string

    The text with 24bit rgb color

    import { bgRgb24 } from "@std/fmt/colors";

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