Samuel-DD07 commited on
Commit
2854468
1 Parent(s): 933284e

Mise à jour des styles CSS pour utiliser la police Poppins et modifier les couleurs du fond et du texte.

Browse files
Files changed (1) hide show
  1. app.py +12 -3
app.py CHANGED
@@ -51,14 +51,23 @@ def generate_text(prompt):
51
 
52
  # CSS styles
53
  css = """
 
54
  body, html {
55
  height: 100%;
56
  margin: 0;
57
- font-family: 'Arial', sans-serif;
58
- background-color: #131722; /* Dark background color */
59
- color: #ffffff;
 
 
 
60
  }
61
 
 
 
 
 
 
62
  /* Container for the entire chat interface */
63
  #chat-interface {
64
  display: flex;
 
51
 
52
  # CSS styles
53
  css = """
54
+ @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap')
55
  body, html {
56
  height: 100%;
57
  margin: 0;
58
+ font-family : 'Poppins', sans-serif;
59
+ # font-family: 'Arial', sans-serif;
60
+ }
61
+
62
+ :root{
63
+ --body-background-fill: none !important;
64
  }
65
 
66
+ body,html {
67
+ background-color: #131722; /* Dark background color */
68
+ color: #ffffff;
69
+ }
70
+
71
  /* Container for the entire chat interface */
72
  #chat-interface {
73
  display: flex;