Spaces:
Sleeping
Sleeping
File size: 504 Bytes
3c57e77 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
/* Customize the colors for interactive Streamlit elements */
.stButton>button {
background-color: #f1863d; /* Orange background for buttons */
color: #ededf5;
}
.stTextInput>div>div>input {
background-color: #ededf5;
color: #383838; /* Dark text for contrast */
}
h1.changa-title {
font-family: "Changa", sans-serif;
font-weight: 700; /* Bold weight */
font-style: normal;
color: #ededf5 !important; /* Ensure the color applies overriding default */
}
|