diff --git a/Applications/Browser/Tab.cpp b/Applications/Browser/Tab.cpp index 21b0ee662a..d6df6d2c28 100644 --- a/Applications/Browser/Tab.cpp +++ b/Applications/Browser/Tab.cpp @@ -122,7 +122,7 @@ Tab::Tab() m_bookmark_button = toolbar.add(); m_bookmark_button->set_button_style(Gfx::ButtonStyle::CoolBar); - m_bookmark_button->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/star-black.png")); + m_bookmark_button->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/bookmark-contour.png")); m_bookmark_button->set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed); m_bookmark_button->set_preferred_size(22, 22); @@ -367,10 +367,10 @@ void Tab::update_actions() void Tab::update_bookmark_button(const String& url) { if (BookmarksBarWidget::the().contains_bookmark(url)) { - m_bookmark_button->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/star-yellow.png")); + m_bookmark_button->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/bookmark-filled.png")); m_bookmark_button->set_tooltip("Remove Bookmark"); } else { - m_bookmark_button->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/star-contour.png")); + m_bookmark_button->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/bookmark-contour.png")); m_bookmark_button->set_tooltip("Add Bookmark"); } } diff --git a/Base/res/icons/16x16/bookmark-contour.png b/Base/res/icons/16x16/bookmark-contour.png new file mode 100644 index 0000000000..ce43036bb2 Binary files /dev/null and b/Base/res/icons/16x16/bookmark-contour.png differ diff --git a/Base/res/icons/16x16/bookmark-filled.png b/Base/res/icons/16x16/bookmark-filled.png new file mode 100644 index 0000000000..c76976b44e Binary files /dev/null and b/Base/res/icons/16x16/bookmark-filled.png differ diff --git a/Base/res/icons/16x16/star-contour.png b/Base/res/icons/16x16/star-contour.png deleted file mode 100644 index ce7fbbe992..0000000000 Binary files a/Base/res/icons/16x16/star-contour.png and /dev/null differ diff --git a/Base/res/icons/16x16/star-yellow.png b/Base/res/icons/16x16/star-yellow.png deleted file mode 100644 index d169024740..0000000000 Binary files a/Base/res/icons/16x16/star-yellow.png and /dev/null differ