JeCabrera commited on
Commit
919fc75
·
verified ·
1 Parent(s): a15201b

Update styles.py

Browse files
Files changed (1) hide show
  1. styles.py +3 -3
styles.py CHANGED
@@ -25,14 +25,14 @@ def get_custom_css():
25
  width: 100%;
26
  border-radius: 5px;
27
  height: 3em;
28
- background-color: #3498db;
29
- color: white;
30
  font-weight: bold;
31
  transition: all 0.3s ease;
32
  }
33
 
34
  .stButton > button:hover {
35
- background-color: #2980b9;
36
  transform: translateY(-2px);
37
  }
38
 
 
25
  width: 100%;
26
  border-radius: 5px;
27
  height: 3em;
28
+ background-color: #FFD700; /* Changed to yellow */
29
+ color: black; /* Changed to black for better contrast on yellow */
30
  font-weight: bold;
31
  transition: all 0.3s ease;
32
  }
33
 
34
  .stButton > button:hover {
35
+ background-color: #FFC800; /* Slightly darker yellow on hover */
36
  transform: translateY(-2px);
37
  }
38