Skip to content

Commit

Permalink
[fix] default border color
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksei Kolosov committed Feb 27, 2019
1 parent 66d0d6c commit 958bf68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/border.rs
Expand Up @@ -25,7 +25,7 @@ pub struct Border {

impl Border {
pub fn new(position: BorderPosition) -> Border {
Border { position, color: String::from("#000"), style: BorderStyle::Medium }
Border { position, color: String::from("#D4D4D4"), style: BorderStyle::Medium }
}
pub fn set_style(&mut self, style: String) {
if &style == "thin" {
Expand Down

0 comments on commit 958bf68

Please sign in to comment.