Highlight Text with Rich Library

  • Share this:

Code introduction


This function uses the Rich library to highlight text. The user can specify the text content and color.


Technology Stack : Rich, Console, Text

Code Type : Python Function

Code Difficulty : Intermediate


                
                    
def highlight_text(text, color="green"):
    from rich.console import Console
    from rich.text import Text

    console = Console()
    text_obj = Text(text, style=f"{color} on black")
    console.print(text_obj)

# JSON representation of the code                
              
Tags: