Arkanjo 0.1
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
duplicate_code_detection.CliColors Class Reference

ANSI color codes for terminal text formatting. More...

Static Public Attributes

str HEADER = "\033[95m"
 
str OKBLUE = "\033[94m"
 
str OKGREEN = "\033[92m"
 
str WARNING = "\033[93m"
 
str FAIL = "\033[91m"
 
str ENDC = "\033[0m"
 
str BOLD = "\033[1m"
 
str UNDERLINE = "\033[4m"
 

Detailed Description

ANSI color codes for terminal text formatting.

Provides named constants for colored terminal output using ANSI escape sequences. All colors should be used with ENDC to reset formatting.

Example: print(f"{CliColors.OKGREEN}Success!{CliColors.ENDC}")

Definition at line 43 of file duplicate_code_detection.py.

Member Data Documentation

◆ BOLD

str duplicate_code_detection.CliColors.BOLD = "\033[1m"
static

Definition at line 58 of file duplicate_code_detection.py.

◆ ENDC

str duplicate_code_detection.CliColors.ENDC = "\033[0m"
static

Definition at line 57 of file duplicate_code_detection.py.

◆ FAIL

str duplicate_code_detection.CliColors.FAIL = "\033[91m"
static

Definition at line 56 of file duplicate_code_detection.py.

◆ HEADER

str duplicate_code_detection.CliColors.HEADER = "\033[95m"
static

Definition at line 52 of file duplicate_code_detection.py.

◆ OKBLUE

str duplicate_code_detection.CliColors.OKBLUE = "\033[94m"
static

Definition at line 53 of file duplicate_code_detection.py.

◆ OKGREEN

str duplicate_code_detection.CliColors.OKGREEN = "\033[92m"
static

Definition at line 54 of file duplicate_code_detection.py.

◆ UNDERLINE

str duplicate_code_detection.CliColors.UNDERLINE = "\033[4m"
static

Definition at line 59 of file duplicate_code_detection.py.

◆ WARNING

str duplicate_code_detection.CliColors.WARNING = "\033[93m"
static

Definition at line 55 of file duplicate_code_detection.py.


The documentation for this class was generated from the following file: