From 652a50bbe631ef9f4ea1438547b9fe146d5ff0be Mon Sep 17 00:00:00 2001 From: Andrew Lawrence He Date: Sun, 18 Jun 2017 18:12:01 -0700 Subject: [PATCH 1/2] Fix the css Previously, black circles didn't have a stroke in light mode. --- public/index.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/public/index.css b/public/index.css index a8810e2..7ba146a 100644 --- a/public/index.css +++ b/public/index.css @@ -159,6 +159,14 @@ body { stroke: darkorange; fill: darkorange; } +.dark .brown { + stroke: black; + fill: black; +} +.dark .silver { + stroke: #C0C0C0; + fill: #C0C0C0; +} .light .open { fill: none; } From c4af3a9c4b9dc546be19f7aceece06d04a5bbd97 Mon Sep 17 00:00:00 2001 From: Andrew Lawrence He Date: Sun, 18 Jun 2017 18:12:49 -0700 Subject: [PATCH 2/2] Update index.css --- public/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.css b/public/index.css index 7ba146a..fb7b8f4 100644 --- a/public/index.css +++ b/public/index.css @@ -159,11 +159,11 @@ body { stroke: darkorange; fill: darkorange; } -.dark .brown { +.light .brown { stroke: black; fill: black; } -.dark .silver { +.light .silver { stroke: #C0C0C0; fill: #C0C0C0; }