45 lines
796 B
CSS
45 lines
796 B
CSS
.colorblind {
|
|
background-color: rgb(32, 32, 32);
|
|
color: white;
|
|
}
|
|
|
|
.colorblind .panel {
|
|
background-color: rgb(46, 46, 46);
|
|
}
|
|
|
|
|
|
.colorblind .button {
|
|
background-color: rgb(31, 31, 31);
|
|
border-color: white !important;
|
|
color: white !important
|
|
}
|
|
|
|
.colorblind .button-no-button {
|
|
border: 0 !important;
|
|
color: white !important;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.colorblind .button-no-button:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.colorblind .w3-bordered tr, .w3-table-all tr {
|
|
border-bottom: 1px solid rgb(73, 73, 73);
|
|
}
|
|
.colorblind .w3-button:hover {
|
|
background-color: rgb(82, 82, 82) !important;
|
|
color: white !important
|
|
}
|
|
|
|
.colorblind .selected {
|
|
color: rgb(39, 234, 17) !important
|
|
}
|
|
|
|
.colorblind .progress-text {
|
|
color: hotpink;
|
|
}
|
|
|
|
|