mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 13:00:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using AIStudio.Settings;
 | 
						|
 | 
						|
namespace AIStudio.Tools;
 | 
						|
 | 
						|
public static class MudThemeExtensions
 | 
						|
{
 | 
						|
    public static Palette GetCurrentPalette(this MudTheme theme, SettingsManager settingsManager) => settingsManager.IsDarkMode switch
 | 
						|
    {
 | 
						|
        true => theme.PaletteDark,
 | 
						|
        false => theme.PaletteLight,
 | 
						|
    };
 | 
						|
} |