This commit is contained in:
TheGiddyLimit
2024-03-24 23:47:02 +00:00
parent 84065a027d
commit 12f34a38f8
153 changed files with 90818 additions and 1900 deletions

View File

@@ -1,26 +1,28 @@
@use "vars";
@mixin mix-source-color ($rgb) {
color: $rgb !important;
border-color: $rgb !important;
text-decoration-color: $rgb !important;
}
.night-mode .source {
$rgb-source-PHB: vars.$rgb-subclass--night;
$rgb-source-SADS: #4f63f5;
$rgb-source-PSA: #eec276;
&PHB {
color: $rgb-source-PHB !important;
border-color: $rgb-source-PHB !important;
text-decoration-color: $rgb-source-PHB !important;
}
&__ {
&PHB {
@include mix-source-color($rgb-source-PHB);
}
&SADS {
color: $rgb-source-SADS !important;
border-color: $rgb-source-SADS !important;
text-decoration-color: $rgb-source-SADS !important;
}
&SADS {
@include mix-source-color($rgb-source-SADS);
}
&PSA {
color: $rgb-source-PSA !important;
border-color: $rgb-source-PSA !important;
text-decoration-color: $rgb-source-PSA !important;
&PSA {
@include mix-source-color($rgb-source-PSA);
}
}
}