Skip to content

Instantly share code, notes, and snippets.

View aoi2010's full-sized avatar

Aoishik Khan aoi2010

  • Kolkata
  • 08:42 (UTC +05:30)
View GitHub Profile
@rene-d
rene-d / colors.py
Last active July 9, 2025 18:34
ANSI color codes in Python
# SGR color constants
# rene-d 2018
class Colors:
""" ANSI color codes """
BLACK = "\033[0;30m"
RED = "\033[0;31m"
GREEN = "\033[0;32m"
BROWN = "\033[0;33m"
BLUE = "\033[0;34m"