Merge commit '9475df091491ca7b51c1b60b542720f10637d9dc'

This commit is contained in:
Fabian Montero 2025-09-13 14:34:18 -06:00
commit 1256451169
332 changed files with 25244 additions and 0 deletions

22
sass/skins/lavender.scss Normal file
View file

@ -0,0 +1,22 @@
@mixin theme-variables($theme) {
@if $theme =='light' {
--primary-color: #9055d8; // Contrast ratio: 4.69:1
}
@else if $theme == 'dark' {
--primary-color: #cba2e8; // Contrast ratio: 7.74:1
}
}
:root {
@include theme-variables('light');
}
[data-theme='dark'] {
@include theme-variables('dark');
}
@media (prefers-color-scheme: dark) {
:root:not([data-theme='light']) {
@include theme-variables('dark');
}
}