As has been [brought to my attention recently](https://discourse.lubuntu.me/t/customizing-login-picture-background), our SDDM theme sucks. It's been relatively unmodified since Julien Lavergne made a wee tweak to the default Maui theme that ships with SDDM and which is the embedded default theme. It's messy and hard to to read and worst of all, uses some proprietary custom types, the worst of which is `PictureBox`, which has hardcoded colours (💀!) and just so happens to surround the individual login icon, name, and password entry. I think in the end, the right solution is to start over, and here's what I think would be the required elements:
* get rid of the dependency on `SddmComponents`— this might be asking for a lot, so at the least get rid of any dependency with hardcoded colors
* use [custom types](https://doc.qt.io/qt-5/qmlfirststeps.html#defining-custom-qml-types-for-re-use) to allow for separation of all the different elements into separate QML files
* expose [colors](https://doc.qt.io/qt-5/qml-color.html) through the `theme.conf` so that users can easily make changes without having to write a whole new damn theme! (see the Clairvoyance's theme's [auto password focus](https://github.com/eayus/sddm-theme-clairvoyance/blob/dfc5984ff8f4a0049190da8c6173ba5667904487/UserDelegate.qml#L49) as an example)
* use Lenny as the [default icon](https://discourse.lubuntu.me/t/customizing-login-manager-sddm-user-icon/2022)!
It's in the link above, but here's some docs:
* [SDDM theming wiki page](https://github.com/sddm/sddm/wiki/Theming)
* [Qt Quick documentation](https://doc.qt.io/qt-5/qtquick-index.html)
* especially pay attention to the [types](https://doc.qt.io/qt-5/qtquick-qmlmodule.html) wherein you can find available properties (i.e. you can figure out whether or not you *can* set a `color` on a particular type)
* speaking of which, there's a good article on [properties](https://doc.qt.io/qt-5/qtqml-syntax-objectattributes.html)
* the [poositioning](https://doc.qt.io/qt-5/qtquick-positioning-topic.html) article is helpful in understanding how the `anchor`s work, among other things
* [models and views](https://doc.qt.io/qt-5/qtquick-modelviewsdata-modelview.html) should help explain some other aspects of the theme
* [Qt QML documentation](https://doc.qt.io/qt-5/qtqml-index.html)
* the [first steps](https://doc.qt.io/qt-5/qmlfirststeps.html) are a great way to get started understanding what you're reading
* the [QML reference](https://doc.qt.io/qt-5/qmlreference.html) is good at understanding fundamentals
* [Qt UI forms](https://doc.qt.io/qtcreator/creator-quick-ui-forms.html)
* these are not something I have used, but they're created by [Qt Creator's Design Mode](https://doc.qt.io/qtcreator/creator-using-qt-quick-designer.html) and may provide a simple, graphical way to create