devalbot / static /deval.css
gtani's picture
Refactor chat functionality and update dependencies
f904c62
raw
history blame
1.09 kB
/* ── 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;
}