@charset "utf-8";

/* CSS Document */

.ThemeSelector {
    width: 40px;
    height: 40px;
    border-width: medium;
    opacity: 0.5;
    transition: all 1s;
	cursor: pointer;
}

.ThemeSelector:hover {
	width: 40px;
    height: 40px;
    border-width: medium;
    opacity: 1;
	cursor: pointer;
}

.theme1 {
    background-color: rgba(216,93,128,0.89);
}
.theme2 {
    background-color: rgba(251,255,0,1.00);
}
.theme3 {
    background-color: rgba(0,255,203,1.00);
}
.theme4 {
    background-color: rgba(0,0,0,1.00);
}
