/**
 * Theme
 * 
 * Dark Color: #0e3360  / rgba(14,51,96,1)
 * Light Color: #3fa5e6 / rgba(63,165,230,1)
 */

a {
    color: #3fa5e6;
}

.theme-color-light {
    color: #3fa5e6;
}

.theme-color-dark {
    color: #0e3360;
}

.theme-background-color {
    background-color: #0e3360;
}

.theme-background-dark {
    background-color: #0e3360;
}

.theme-bg-wash {
    background-color: rgba(14, 51, 96, 0.04);
}

.theme-bg-wash-hover:hover {
    background-color: rgba(63, 165, 230, 0.04);
}

.theme-button-primary {
    background: #3fa5e6;
    color: #fff;
}
.theme-button-secondary {
    background: #0e3360;
    color: #3fa5e6;
}
.theme-button-tertiary {
    background: rgba(14, 51, 96, 0.05);
    color: rgba(14, 51, 96, 1);
}

.theme-color-affirmative {
    color: #7ac051;
}

.theme-color-warning {
    color: #d0021b;
}
