---------------------------------------------------------------------- This is the API documentation for the gdtest_theme_cosmo library. ---------------------------------------------------------------------- ## Functions Public functions style(text: str) -> str Apply a style transformation to the text. Parameters ---------- text : str The text to style. Returns ------- str The styled text. Examples -------- >>> style("hello") 'HELLO' theme(name: str) -> dict Get a theme configuration by name. Parameters ---------- name : str The name of the theme. Returns ------- dict A dictionary of theme settings. Examples -------- >>> theme("dark") {'name': 'dark', 'bg': '#000'}