fix: docs

This commit is contained in:
Ashley Wulber 2024-10-21 10:42:08 -04:00
parent 51b370ef48
commit 16f14793c7
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820
9 changed files with 30 additions and 122 deletions

View file

@ -143,14 +143,14 @@ pub fn exit<T>() -> Task<T> {
/// The appearance of a program.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Appearance {
/// The background [`Color`] of the application.
pub background_color: Color,
/// The background [`iced_core::Color`] of the application.
pub background_color: iced_core::Color,
/// The default text [`Color`] of the application.
pub text_color: Color,
/// The default text [`iced_core::Color`] of the application.
pub text_color: iced_core::Color,
/// The default icon [`Color`] of the application.
pub icon_color: Color,
/// The default icon [`iced_core::Color`] of the application.
pub icon_color: iced_core::Color,
}
/// The default style of a [`Program`].