Prettygoey
Prettygooey is a set of themed UI components for the iced GUI library.

⚠️ Prettygooey, like iced, is experimental software. ⚠️
Getting started
This guide assumes you have basic knowledge of iced.
In your Sandbox's constructor, create an instance of prettygooey::theme::Theme.
In your Sandbox's view function, return an instance of our primary container to apply the background.
All supported widgets can be created via the Theme instance.
let button = self.theme.button;
Widgets may provide optional customizations. Take the Text widget for example. By importing the extension trait prettygooey::theme::ThemeExt, you expose a variant method that'll let you switch the variant to Dimmed:
self.theme
.text
.variant,