long-code-arena / src /formatting.py
saridormi's picture
Make files submissions instructions task-specific & other small changes
6c92442
raw
history blame
No virus
348 Bytes
def styled_error(error):
return f"<p style='color: red; font-size: 20px; text-align: center;'>{error}</p>"
def styled_warning(warn):
return f"<p style='color: orange; font-size: 20px; text-align: center;'>{warn}</p>"
def styled_message(message):
return f"<p style='color: green; font-size: 20px; text-align: center;'>{message}</p>"