| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2025, Ladybird contributors | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-08 11:24:15 +01:00
										 |  |  | #include <LibWeb/CSS/StyleValues/ColorStyleValue.h>
 | 
					
						
							| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://drafts.csswg.org/css-color-5/#funcdef-light-dark
 | 
					
						
							| 
									
										
										
										
											2025-08-08 11:41:12 +01:00
										 |  |  | class LightDarkStyleValue final : public ColorStyleValue { | 
					
						
							| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2025-08-08 11:41:12 +01:00
										 |  |  |     virtual ~LightDarkStyleValue() override = default; | 
					
						
							| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-08 11:41:12 +01:00
										 |  |  |     static ValueComparingNonnullRefPtr<LightDarkStyleValue const> create(ValueComparingNonnullRefPtr<StyleValue const> light, ValueComparingNonnullRefPtr<StyleValue const> dark) | 
					
						
							| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2025-08-08 11:41:12 +01:00
										 |  |  |         return AK::adopt_ref(*new (nothrow) LightDarkStyleValue(move(light), move(dark))); | 
					
						
							| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-08 10:11:51 +01:00
										 |  |  |     virtual bool equals(StyleValue const&) const override; | 
					
						
							| 
									
										
										
										
											2025-07-19 11:31:07 +12:00
										 |  |  |     virtual Optional<Color> to_color(ColorResolutionContext) const override; | 
					
						
							| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  |     virtual String to_string(SerializationMode) const override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2025-08-08 11:41:12 +01:00
										 |  |  |     LightDarkStyleValue(ValueComparingNonnullRefPtr<StyleValue const> light, ValueComparingNonnullRefPtr<StyleValue const> dark) | 
					
						
							| 
									
										
										
										
											2025-08-08 11:24:15 +01:00
										 |  |  |         : ColorStyleValue(ColorStyleValue::ColorType::LightDark, ColorSyntax::Modern) | 
					
						
							| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  |         , m_properties { .light = move(light), .dark = move(dark) } | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     struct Properties { | 
					
						
							| 
									
										
										
										
											2025-08-08 10:11:51 +01:00
										 |  |  |         ValueComparingNonnullRefPtr<StyleValue const> light; | 
					
						
							|  |  |  |         ValueComparingNonnullRefPtr<StyleValue const> dark; | 
					
						
							| 
									
										
										
										
											2025-01-05 09:51:58 +11:00
										 |  |  |         bool operator==(Properties const&) const = default; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Properties m_properties; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // Web::CSS
 |