mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 20:13:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			366 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			366 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import $ from "jquery";
 | |
| 
 | |
| export function enable() {
 | |
|     $("body").removeClass("color-scheme-automatic").addClass("night-mode");
 | |
| }
 | |
| 
 | |
| export function disable() {
 | |
|     $("body").removeClass("color-scheme-automatic").removeClass("night-mode");
 | |
| }
 | |
| 
 | |
| export function default_preference_checker() {
 | |
|     $("body").removeClass("night-mode").addClass("color-scheme-automatic");
 | |
| }
 |