synchronization
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2025-08-25 13:02:18 +08:00
commit f1ecb4ed07
37 changed files with 1644 additions and 0 deletions

16
app/index.less Normal file
View File

@@ -0,0 +1,16 @@
.var-primary(@primary: #afb42b; @primary-weak: #c0ca33) {
--primary : @primary;
--primary-70 : fade(@primary, 70%);
--primary-50 : fade(@primary, 50%);
--primary-30 : fade(@primary, 30%);
--primary-weak : @primary-weak;
--primary-weak-50: fade(@primary-weak, 50%);
}
:root {
.var-primary(#5a5df0, #697be2);
&.dark {
.var-primary(#a4ce60, #82df7a);
}
}