mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
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");
 | 
						|
}
 |