/** Dark Mode **/
body {
	background: #222;
	color: #999;
}
main {
	background: #111;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #ddd;
}
input,
button,
select,
textarea,
.textarea,
th,
td,
table {
	background: #333;
	color: #bbb;
	border-color: #222;
	outline: none;
}
input,
textarea {
	background: #444;
	color: #ccc;
}
input:disabled,
input:read-only,
button:disabled {
	background: #222;
	color: #999;
}
input:active,
input:focus,
button:not(:disabled):active,
button:focus,
.textarea:focus,
textarea:focus,
select:focus {
	background-color: #555;
	border-color: #ddd;
	color: #ddd;
}
a {
	color: #2a96f3;
}
a:visited {
	color: #2a96f3;
}
a:hover,
a:focus {
	outline: none;
	color: #7cb342;
}

a.publish-date {
	color: #888;
}

.alert {
	background: #ddd;
	color: #333;
}

.alert.info,
.alert.information,
.alert.informational {
	background: #8db5ff;
}

.alert.success {
	background: #99ff8d;
}

.alert.error {
	background: #ff8d8d;
}

.alert.warning,
.alert.warn {
	background: #ffd18d;
}
