/**************************************************************************************************
 *
 *  SOME BASIC COLOURS
 *
 */

    .white {
        color: rgb(255, 255, 255);
    }

    .lightgray {
        color: rgb(245, 245, 245);
    }

    .gray {
        color: rgb(165, 165, 165);
    }

    .darkgray {
        color: rgb(115, 115, 115);
    }

    .black {
        color: rgb(60, 60, 60);
    }

    .background-white {
        background: rgb(255, 255, 255);
    }

    .background-lightgray {
        background: rgb(245, 245, 245);
    }

    .background-gray {
        background: rgb(165, 165, 165);
    }

    .background-darkgray {
        background: rgb(115, 115, 115);
    }

    .background-black {
        background: rgb(60, 60, 60);
    }

/*
 *  END SOME BASIC COLOURS
 *
 **************************************************************************************************/