Python package providing NYU brand color constants and a Color enum.
Install directly from GitHub:
pip install https://github.com/nyumathclinic/nyu-colors/archive/refs/heads/main.zip
Each NYU brand color is available as a hex string constant:
from nyu_colors import NYU_VIOLET, TEAL, MAGENTA
print(NYU_VIOLET) # "#57068c"
print(TEAL) # "#009b8a"
print(MAGENTA) # "#fb0f78"All colors are also accessible through the Color enum:
from nyu_colors import Color
print(Color.NYU_VIOLET.value) # "#57068c"
print(Color.ULTRA_VIOLET.value) # "#8900e1"Copyright 1831–2026 New York University. All Rights Reserved.

















