Spaces:
Running
Running
/* ββ Brand overrides βββββββββββββββββββββββββββββββββββββββββββ */ | |
:root { | |
--color-brand-primary: #E7AB12; | |
--color-brand-secondary: #0D456C; | |
} | |
/* ββ Page background βββββββββββββββββββββββββββββ */ | |
body, .gradio-container { | |
background-color: #F2F6F8 ; /* your desired page bg */ | |
} | |
/* ββ All buttons βββββββββββββββββββββββββββββββββ */ | |
button.gr-button { | |
background-color: #0D456C ; /* your desired button bg */ | |
color: #F2F6F8 ; /* button text color */ | |
} | |
/* optional: hover state */ | |
button.gr-button:hover { | |
background-color: #0056b3 ; | |
} | |
/* ββ Global button look ββββββββββββββββββββββββββββββββββββββββ */ | |
button.gr-button { | |
background-color: #0D456C ; | |
color: #E7AB12 ; | |
} | |