Created attachment 115653 [details] LO 4.4.3.2, KDE with Wonton Soup, Sifr icon set Breeze looks nice with 'normal' bright colors but is barely readable in case of darker backgrounds (e.g. Wonton Soup at KDE). The same is true for other monochrome icon sets like Sifr. The ux group discussed the adjustment of white/grey colors automatically as a possible solution. Another way to deal with the situation is to read icons from the system.
Created attachment 115654 [details] LO 5.0.0.0.alpha1, KDE with Wonton Soup, Breeze icons
The dark set has been created in the upstream icon repo at GitHub: https://github.com/NitruxSA/plasma-next-icons/pull/139
Adding the Breeze Dark icon set clutters the LO dialog too much. That's why Kendy suggested to solve the issue programmatically. BTW: Better pull from git://anongit.kde.org/breeze.git
Work on this has commenced, see http://cgit.freedesktop.org/libreoffice/core/commit/?id=78a4e9cb89830191e77c558759e845e5a15b9cc7 Jay filed a duplicate that is more general (includes Sifr). *** This bug has been marked as a duplicate of bug 94632 ***
just adding a comment on how a Plasma sessions colors the Breeze icons: for its monochrome icons, that icon theme internally uses stylesheets to apply the colors. very simplified the source svg of a typical breeze icon looks like: <defs id="defs3051"> <style id="current-color-scheme" type="text/css"> .ColorScheme-Text { color:#31363b; } </style> </defs> <path id="path7" class="ColorScheme-Text" d="... " style="fill:currentColor;fill-opacity:1;stroke:none" /> (other named colors are supported besides Text) then our icon loader changes the contents of the "current-color-scheme" element before rendering the icon, making it easy to paint them with different colors. Maybe Libreoffice could do something like that? (either directly loaded at build time, prerendered at build time or whatever)