ojas121 commited on
Commit
bfc2d97
·
verified ·
1 Parent(s): 3867db1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -6
app.py CHANGED
@@ -15,26 +15,28 @@ from pydub import AudioSegment
15
  import noisereduce as nr
16
 
17
  # 🎨 Apply Custom CSS Styling
 
18
  st.markdown(
19
  """
20
  <style>
21
  .stApp {
22
- background-color: #f0f2f6;
 
23
  }
24
  .title {
25
  font-size: 32px;
26
  text-align: center;
27
- color: #4A90E2;
28
  font-weight: bold;
29
  }
30
  .subheader {
31
  font-size: 20px;
32
  font-weight: bold;
33
- color: #333;
34
  }
35
  .stButton>button {
36
- background-color: #4A90E2 !important;
37
- color: white !important;
38
  font-size: 18px !important;
39
  padding: 10px 24px !important;
40
  border-radius: 10px !important;
@@ -45,7 +47,12 @@ st.markdown(
45
  }
46
  .stMarkdown {
47
  font-size: 16px;
48
- color: #333;
 
 
 
 
 
49
  }
50
  </style>
51
  """,
 
15
  import noisereduce as nr
16
 
17
  # 🎨 Apply Custom CSS Styling
18
+ 🎨 Apply Custom Dark Mode CSS
19
  st.markdown(
20
  """
21
  <style>
22
  .stApp {
23
+ background-color: #121212;
24
+ color: white;
25
  }
26
  .title {
27
  font-size: 32px;
28
  text-align: center;
29
+ color: #4CAF50;
30
  font-weight: bold;
31
  }
32
  .subheader {
33
  font-size: 20px;
34
  font-weight: bold;
35
+ color: #BB86FC;
36
  }
37
  .stButton>button {
38
+ background-color: #BB86FC !important;
39
+ color: black !important;
40
  font-size: 18px !important;
41
  padding: 10px 24px !important;
42
  border-radius: 10px !important;
 
47
  }
48
  .stMarkdown {
49
  font-size: 16px;
50
+ color: #E0E0E0;
51
+ }
52
+ .stTextInput>div>div>input {
53
+ background-color: #1E1E1E !important;
54
+ color: white !important;
55
+ border-radius: 10px !important;
56
  }
57
  </style>
58
  """,