summaryrefslogtreecommitdiffstats
path: root/wgpu/src/defaults.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--wgpu/src/defaults.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/wgpu/src/defaults.rs b/wgpu/src/defaults.rs
index 8de8258b..11718a87 100644
--- a/wgpu/src/defaults.rs
+++ b/wgpu/src/defaults.rs
@@ -1,7 +1,10 @@
+//! Use default styling attributes to inherit styles.
use iced_native::Color;
+/// Some default styling attributes.
#[derive(Debug, Clone, Copy)]
pub struct Defaults {
+ /// Text styling
pub text: Text,
}
@@ -13,8 +16,10 @@ impl Default for Defaults {
}
}
+/// Some default text styling attributes.
#[derive(Debug, Clone, Copy)]
pub struct Text {
+ /// The default color of text
pub color: Color,
}