MCPcopy Create free account
hub / github.com/FastLED/FastLED / yellow_text

Function yellow_text

ci/compiler/formatting_utils.py:35–45  ·  view source on GitHub ↗

Return text in yellow color for terminal output. Args: text: The text to format Returns: Text wrapped with ANSI yellow color codes

(text: str)

Source from the content-addressed store, hash-verified

33
34
35def yellow_text(text: str) -> str:
36 """
37 Return text in yellow color for terminal output.
38
39 Args:
40 text: The text to format
41
42 Returns:
43 Text wrapped with ANSI yellow color codes
44 """
45 return f"\033[33m{text}\033[0m"
46
47
48def blue_text(text: str) -> str:

Callers 1

mainFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected