From 6c179379a0afaf03b22fb58badf5ba86e309d2db Mon Sep 17 00:00:00 2001 From: Billy Messenger Date: Thu, 12 Aug 2021 09:57:59 -0500 Subject: [PATCH] tweak default rule style --- style/src/rule.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style/src/rule.rs b/style/src/rule.rs index be4c86d181..221f48fb29 100644 --- a/style/src/rule.rs +++ b/style/src/rule.rs @@ -82,10 +82,10 @@ pub struct Style { impl std::default::Default for Style { fn default() -> Self { Style { - color: [0.6, 0.6, 0.6, 0.51].into(), + color: [0.6, 0.6, 0.6, 0.6].into(), width: 1, radius: 0.0, - fill_mode: FillMode::Percent(90.0), + fill_mode: FillMode::Full, } } }