mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-28 09:12:34 -04:00 
			
		
		
		
	Co-authored-by: Elry <144011449+ElryWeeb@users.noreply.github.com> Co-authored-by: AlienHack <the4got10@windowslive.com> Co-authored-by: William Brockhus <pickeringw@gmail.com> Co-authored-by: Shivam Amin <xShivam.Amin@gmail.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			186 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			186 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.ComponentModel;
 | |
| 
 | |
| namespace API.Entities.Enums.UserPreferences;
 | |
| 
 | |
| public enum PdfTheme
 | |
| {
 | |
|     [Description("Dark")]
 | |
|     Dark = 0,
 | |
|     [Description("Light")]
 | |
|     Light = 1
 | |
| }
 |