/*
 * Integrated Retail brand colors, extracted directly from the company
 * logo/site (integratedretail.com):
 *   - Navy  #003060 (logo wordmark)
 *   - Blue  #084E96 (site headings/links)
 *   - Red   #F00000 (logo accent arrow)
 *
 * GLPI 11 themes are just CSS custom properties scoped under
 * :root[data-glpi-theme="..."] (see css/palettes/_teclib.scss in GLPI core).
 * Overriding them here re-colors the existing layout without touching any
 * GLPI core file or needing a SCSS build step.
 */
:root {
    /* Primary brand color: buttons, active states, links */
    --tblr-primary-rgb: 8, 78, 150 !important;
    --tblr-primary-fg: #ffffff !important;
    --tblr-link-color-rgb: 8, 78, 150 !important;

    /* Left-hand navigation */
    --glpi-mainmenu-bg: #003060 !important;
    --glpi-mainmenu-fg: #ffffff !important;

    /* Misc accent palette used across widgets/illustrations */
    --glpi-palette-color-1: #4a7fb5 !important;
    --glpi-palette-color-2: #003060 !important;
    --glpi-palette-color-3: #f1f1f2 !important;
    --glpi-palette-color-4: #f00000 !important;

    /* Self-Service home banner ("How can we help you?") */
    --glpi-helpdesk-header: #dde8f2 !important;
    --glpi-illustrations-gradient-1: #e4edf6 !important;
    --glpi-illustrations-gradient-2: #a9c3dd !important;
    --glpi-illustrations-gradient-3: #245686 !important;
}
