From 3a041e0a85062593c2e9fec28cc7613b30bebcdc Mon Sep 17 00:00:00 2001 From: FireGrace Date: Mon, 15 Apr 2019 21:21:19 +0300 Subject: [PATCH] Apply filter to . As now, some hex values are in uppercase. To unify the page, and prevent this from happening, we can apply lower filter. Pros: > Easy of copy-paste --- basics_dev/style-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basics_dev/style-guide.md b/basics_dev/style-guide.md index 32f0259a..fcc94001 100644 --- a/basics_dev/style-guide.md +++ b/basics_dev/style-guide.md @@ -36,7 +36,7 @@ The following **grayscale** colors are currently used on the Qubes website and d
{{color.name}} - #{{color.hex}} + #{{color.hex | lower}}
{% endif %} {% endfor %} @@ -50,7 +50,7 @@ The following **colors** are currently being used on the Qubes website and docum
{{color.name}} - #{{color.hex}} + #{{color.hex | lower}}
{% endif %} {% endfor %}