From 4e8fa6e2018277ac02f9fff714f1f55e22e620cb Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 16 Aug 2020 14:42:34 +0200 Subject: [PATCH] Fixed erroneous comma in template --- material/partials/palette.html | 2 +- src/partials/palette.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/material/partials/palette.html b/material/partials/palette.html index e312d10ee..05e366635 100644 --- a/material/partials/palette.html +++ b/material/partials/palette.html @@ -22,7 +22,7 @@ "grey": "#757575", "blue-grey": "#546d78", "black": "#000000", - "white": "#ffffff", + "white": "#ffffff" }[key] }}{% endmacro %} {% macro accent(key) %}{{ { "red": "#ff1a47", diff --git a/src/partials/palette.html b/src/partials/palette.html index cfda36959..01c73fb46 100644 --- a/src/partials/palette.html +++ b/src/partials/palette.html @@ -42,7 +42,7 @@ "grey": "#757575", "blue-grey": "#546d78", "black": "#000000", - "white": "#ffffff", + "white": "#ffffff" }[key] }}{% endmacro %}