Spaces:
Restarting
Restarting
File size: 364 Bytes
cdf268e |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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>"
)
|