/* dark */
.theme-dark {
	background-color: black;
}

.theme-dark {
	color: white;
}

.theme-dark h2 {
	color: yellow;
}

/* clear */
.theme-clear {
	background-color: white;
}

.theme-clear {
	color: black;
}

.theme-clear h2 {
	color: #81a8ff;
}

/* striped-clear */
.theme-striped-clear {
	background: #9aff85;
	background: repeating-linear-gradient(135deg, #b0ff9a 0px, #b0ff9a 8px, #9aff85 8px,
		#9aff85 16px);
}

.theme-striped-clear {
	color: black;
}

.theme-striped-clear h2 {
	color: #81a8ff;
}

/* grey */
.theme-grey {
	background-color: #6b6a69;
	color: #bbbbbb;
}

.theme-grey>div {
	border-right: 1px solid #bbbbbb;
}

.theme-grey>div:last-child {
	border-right: none;
}


/* grey */
.theme-yellow {
	background-color: #e9db66;
	background: repeating-linear-gradient(135deg, #fff06e 0px, #fff06e 8px, #e9db66 8px,
		#e9db66 16px);
	color: #000000;
}