summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2018-10-05 15:08:20 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2018-10-05 15:08:20 +0800
commit306acafa6578c3585d35453d8c419d0c6eb71da9 (patch)
treeb64f970446a48722734bc57bc946f16017e38a76
parente2fcf5d7957d850619f7aaaa8d83658034626394 (diff)
Make the default stroke color black
-rw-r--r--svgbob/Cargo.toml2
-rw-r--r--svgbob/src/settings.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/svgbob/Cargo.toml b/svgbob/Cargo.toml
index 4c54be9..b3f0c73 100644
--- a/svgbob/Cargo.toml
+++ b/svgbob/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "svgbob"
-version = "0.4.0"
+version = "0.4.1"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
description = "Transform your ascii diagrams into happy little SVG"
repository = "https://github.com/ivanceras/svgbob"
diff --git a/svgbob/src/settings.rs b/svgbob/src/settings.rs
index addba26..16ec016 100644
--- a/svgbob/src/settings.rs
+++ b/svgbob/src/settings.rs
@@ -44,7 +44,7 @@ impl Default for Settings {
font_family: "arial".to_string(),
font_size: 14.0,
stroke_width: 2.0,
- stroke_color: "currentColor".into(),
+ stroke_color: "black".into(),
background_color: "white".into(),
}
}