Spaces:
Running
Running
File size: 1,089 Bytes
f904c62 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
/* ββ Brand overrides βββββββββββββββββββββββββββββββββββββββββββ */
:root {
--color-brand-primary: #E7AB12;
--color-brand-secondary: #0D456C;
}
/* ββ Page background βββββββββββββββββββββββββββββ */
body, .gradio-container {
background-color: #F2F6F8 !important; /* your desired page bg */
}
/* ββ All buttons βββββββββββββββββββββββββββββββββ */
button.gr-button {
background-color: #0D456C !important; /* your desired button bg */
color: #F2F6F8 !important; /* button text color */
}
/* optional: hover state */
button.gr-button:hover {
background-color: #0056b3 !important;
}
/* ββ Global button look ββββββββββββββββββββββββββββββββββββββββ */
button.gr-button {
background-color: #0D456C !important;
color: #E7AB12 !important;
}
|