/*******************************************************************************
 * Olive green scheme.
 */
.green {
    background-color: rgb(240,255,152);
    color: rgb(40,40,40);
}

.green h1, .green h2, .green h3, .green h4 .green h5 .green h6 {
    color: rgb(0,0,0);
}

/*******************************************************************************
 * Red scheme.
 */
.red {
    background-color: rgb(232,104,62);
    color: rgb(40,40,40);
}

/*******************************************************************************
 * Yellow scheme.
 */
.yellow {
    background-color: rgb(255,255,170);
    color: rgb(0,0,0);
}

/*******************************************************************************
 * White scheme.
 */
.white {
    background-color: rgb(255,255,255);
    color: rgb(0,0,0);
}

/*******************************************************************************
 * Transparent scheme (used for backgrounded containers, applying rounded
 * corners.)
 */
.transparent {
    background-color: transparent;
    color: rgb(0,0,0);
}

/*******************************************************************************
 * Gray scheme.
 */
.gray {
    background-color: rgb(245,245,245);
    color: black;
}

