Has Krusader a dark mode I can configure in Gnome?

Greetings,
I use (and enjoy) Krusader on Gnome.
Gnome is set to dark mode, which Krusader does not detect.
I have no KDE to test if Krusader detects its dark mode.
Hence my question.

I changed the colors, but of course this leaves light frames:

Thanks

Maybe have a look at something like https://discovery.endeavouros.com/applications/uniform-theme-and-fonts-for-qt-apps-in-gtk-environments/2021/05/

Thank you, this looks interesting, The QGnome description says it was introduced in Gnome 3.20.
Debian 11 uses Gnome 3.38, but I fail to find any trace of a QGnome packages.
I will continue to search

When I execute sudo apt info qt5-gtk-platformtheme I see it is installed.

I executed sudo apt install breeze-icon-theme because of warning about missing icons.
I switched from wayland to x11 because of other error messages

When I execute

echo XDG_SESSION_TYPE ===  $XDG_SESSION_TYPE
export QT_QPA_PLATFORMTHEME='gnome'
echo   QT_QPA_PLATFORMTHEME ===  $QT_QPA_PLATFORMTHEME
krusader

I get these warning and krusader opens with light border, as above.

XDG_SESSION_TYPE === x11
QT_QPA_PLATFORMTHEME === gnome
QCoreApplication::applicationDirPath: Please instantiate the QApplication object first
16:40:21.984-debug default unknown@0 # System icon theme: "Adwaita"
16:40:22.050-warning default unknown@0 # QWidget::insertAction: Attempt to insert null action
16:40:22.051-warning default unknown@0 # QWidget::insertAction: Attempt to insert null action
16:40:22.055-warning kf.i18n unknown@0 # Trying to convert empty KLocalizedString to QString.
16:40:22.086-warning kf.kio.widgets.kdirmodel unknown@0 # protocol mismatch: "" vs "file"

The solution is just to tell Qt the specific GNOME dark mode

export QT_STYLE_OVERRIDE='Adwaita-Dark'

Now Krusader looks awesome!