mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
37 lines
659 B
SCSS
37 lines
659 B
SCSS
@import "../themes/themes";
|
|
|
|
@include themifyRoot() {
|
|
.main-app {
|
|
a {
|
|
color: themed(anchorColor);
|
|
text-decoration: none;
|
|
}
|
|
|
|
table, td, th {
|
|
border-color: themed(tableBorderColor);
|
|
color: themed(defaultFgColor);
|
|
}
|
|
|
|
code {
|
|
background-color: themed(codeBgColor);
|
|
}
|
|
|
|
*.text-muted {
|
|
color: themed(altMutedColor) !important;
|
|
}
|
|
|
|
.form-control {
|
|
color: themed(formControlFgColor);
|
|
background-color: themed(formControlBgColor);
|
|
}
|
|
|
|
.form-control::placeholder {
|
|
color: themed(formControlPlaceholderColor);
|
|
}
|
|
|
|
.toast:not(.show) {
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|