/*
 * NewtArr / ElfHosted brand overrides
 * Loaded after style.css and new-style.css to override the default blue accent.
 * Also sets Ubuntu as the base font.
 */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --accent-color: #50762E;
    --accent-hover: #36511F;
    --accent-light: #8D9E40;

    --sidebar-item-active: #50762E;
    --switch-active: #50762E;

    --button-primary-bg: #50762E;
    --button-primary-hover: #36511F;

    --info-color: #50762E;
}

.dark-theme {
    --accent-color: #8D9E40;
    --accent-hover: #50762E;

    --sidebar-item-active: #8D9E40;
}

/* Base font override */
body, html {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

button, input, select, textarea {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
