/* getAddress() Australia: green and gold.

   Every brand colour on the web site is named here and nowhere else. theme.css, main.css, the page
   styles and the hero animation all read these variables, so another brand (getaddress.dk) is a copy
   of this file with its own values, picked with the Brand:Theme setting. See docs/BRANDING.md.

   Loaded before theme.css. */
:root {
    /* The brand colour: buttons, links, badges, active states. The -rgb form feeds translucent uses. */
    --brand-primary: #00843d;
    --brand-primary-rgb: 0, 132, 61;

    /* Solid primary buttons: hover/focus background and border, pressed background. */
    --brand-primary-hover: #1a9656;
    --brand-primary-hover-border: #0f8f4c;
    --brand-primary-active: #2a9e60;

    /* Darker steps: text links on hover, the range slider thumb while dragged, the focus ring. */
    --brand-primary-strong: #006b32;
    --brand-primary-pressed: #00602d;
    --brand-primary-focus-rgb: 0, 112, 52;

    /* Pale backgrounds: secondary buttons and surfaces, tabs, accordions. -strong is a secondary
       button on hover. */
    --brand-tint: #eef6f1;
    --brand-tint-rgb: 238, 246, 241;
    --brand-tint-subtle: #f1f8f3;
    --brand-tint-strong: #d6ebdf;

    /* .alert-primary */
    --brand-alert-background: #e8f4ec;
    --brand-alert-text: #00773a;
    --brand-alert-border: #99d1b1;
    --brand-alert-link: #005a2b;

    /* The logo and gradient text run primary -> middle -> accent. */
    --brand-gradient-middle: #6fae1f;
    --brand-accent: #e6b000;

    /* The home page hero: the animated ribbons (deep base, primary, highlight, faint streaks) and its
       call-to-action button, which has to stand out against them. */
    --brand-hero-deep: #00482a;
    --brand-hero-highlight: #ffcd00;
    --brand-hero-streak: #ffffff;
    --brand-hero-button: #f2a900;
    --brand-hero-button-hover: #ffb81c;
    --brand-hero-button-text: #00331d;
}
