22 lines
		
	
	
	
		
			468 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			468 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @mixin theme-variables($theme) {
 | |
|     @if $theme =='light' {
 | |
|         --primary-color: #727272;  // Contrast ratio: 4.81:1
 | |
|     }
 | |
|     @else if $theme == 'dark' {
 | |
|         --primary-color: #b3b3b3;  // Contrast ratio: 7.86: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');
 | |
|     }
 | |
| }
 |