You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							511 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							511 B
						
					
					
				
								import 'package:sonnat/core/theme/panel_colors.dart';
							 | 
						|
								import 'package:sonnat/core/theme/panel_typography.dart';
							 | 
						|
								
							 | 
						|
								abstract class PanelTheme {
							 | 
						|
								  PanelTheme({required this.colors, required this.typography});
							 | 
						|
								
							 | 
						|
								  final sonnatColors colors;
							 | 
						|
								  final sonnatTypography typography;
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								class LightTheme extends PanelTheme {
							 | 
						|
								  LightTheme() : super(colors: LightThemeColors(), typography: PersianTypo());
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								class DarkTheme extends PanelTheme {
							 | 
						|
								  DarkTheme() : super(colors: DarkThemeColors(), typography: PersianTypo());
							 | 
						|
								}
							 |