
/* default theme (Light mode theme)  */

body {
    background-color: white;
    color:black;
}


/* Dark Mode theme */
body.dark{
    background-color: black;
    color: white;

}

/* Ocean Mode theme*/
body.ocean{
    background-color: rgb(59, 59, 248);
    color: white;
}