LibWeb/CSS: Implement the color-scheme CSS property

This commit is contained in:
Gingeh
2025-01-02 12:59:09 +11:00
committed by Sam Atkins
parent 89296b88a0
commit ce5cd012b9
36 changed files with 618 additions and 370 deletions

View File

@@ -233,13 +233,13 @@ public:
Color background_color() const;
Vector<CSS::BackgroundLayerData> const* background_layers() const;
Color normal_link_color() const;
Optional<Color> normal_link_color() const;
void set_normal_link_color(Color);
Color active_link_color() const;
Optional<Color> active_link_color() const;
void set_active_link_color(Color);
Color visited_link_color() const;
Optional<Color> visited_link_color() const;
void set_visited_link_color(Color);
void update_style();