﻿/* 
    This is the starting point for a centralized color pallete.
    DB-configurable colors are overridden in the master page.

    Default colors are based on Hireclick's branding.

    Lets try to best-match existing colors to reference some variable defined here.
*/
:root {
    /* Configurable colors */
    /* Nav Header */
    --nav-header-color: #4a4a4a;
    /* Hireclick Gray - main nav header, inactive nav items */
    --primary-color: #f7B219;
    --primary-accent: #f9d483;
    /* Hireclick Green - buttons mostly */
    --secondary-color: #408040;
    /* Neutrals */
    --white: #ffffff;
    --gray-light-1: #f2f2f2;
    --gray-light-2: #e0e0e0;
    --gray-medium-1: #b0b0b0;
    --gray-medium-2: #8a8a8a;
    --gray-dark-1: #5c5c5c;
    --gray-dark-2: #2e2e2e;
    --black: #000000;
    /* Borders */
    --border-light: #dddddd;
    --border-dark: #95989a;
    /* Misc */
    --red: #d2322d;
    --red-light: #d9534f;
    --pink: #f4cec5;
    --green: #35aa47;
    --green-light: #8ac573;
    --blue: #486d93;
    --blue-light: #5e87b0;
    --blue-link: #3590c1;
    --yellow: #ffff00;
    --yellow-light: #FFFF99;
    --orange: #FF9933;
}