MANIKANDAN A commited on
Commit
5615746
1 Parent(s): 31d8d12

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -389,7 +389,7 @@ def predict(term_col, poem_col):
389
  poem_col.markdown('#### Generated Poem:')
390
  poem_col.markdown('<div class="poem-container">', unsafe_allow_html=True)
391
  for line in poem_lines:
392
- poem_col.markdown(f'<div class="poem-line" style="color: #FF4500; background-color: #ADD8E6; padding: 5px; margin-bottom: 5px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;">{line}</div>', unsafe_allow_html=True)
393
  poem_col.markdown('</div>', unsafe_allow_html=True)
394
 
395
 
 
389
  poem_col.markdown('#### Generated Poem:')
390
  poem_col.markdown('<div class="poem-container">', unsafe_allow_html=True)
391
  for line in poem_lines:
392
+ poem_col.markdown(f'<div class="poem-line" style="color: black; background-color: light grey; padding: 5px; margin-bottom: 5px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;">{line}</div>', unsafe_allow_html=True)
393
  poem_col.markdown('</div>', unsafe_allow_html=True)
394
 
395