---------------------------------------------------------------------- This is the API documentation for the gdtest_theme_cerulean library. ---------------------------------------------------------------------- ## Functions Public functions paint(color: str) -> str Paint with the given color. Parameters ---------- color : str The color to paint with. Returns ------- str A description of the painted result. Examples -------- >>> paint("blue") 'painted blue' blend(c1: str, c2: str) -> str Blend two colors together. Parameters ---------- c1 : str The first color. c2 : str The second color. Returns ------- str The blended color description. Examples -------- >>> blend("red", "blue") 'red-blue'