From 7889861af2fcaca1ed22f8bb3f4c72c7fca5de20 Mon Sep 17 00:00:00 2001 From: Dan Leech Date: Fri, 13 Nov 2015 17:15:15 +0000 Subject: [PATCH] Changed limits on saturation and lightness special casing --- 404.html | 16 ++++++++-------- index.html | 16 ++++++++-------- src/build.js | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/404.html b/404.html index 0538c00d..9d084f3b 100644 --- a/404.html +++ b/404.html @@ -225,7 +225,6 @@ diff --git a/index.html b/index.html index 0538c00d..9d084f3b 100644 --- a/index.html +++ b/index.html @@ -225,7 +225,6 @@ diff --git a/src/build.js b/src/build.js index 62324d27..1fcb972f 100644 --- a/src/build.js +++ b/src/build.js @@ -49,14 +49,14 @@ source.icons.sort(function(a, b) { }); var tmp = []; for (var i = 0; i < source.icons.length; i++) { - if (source.icons[i].luminance < 10) { + if (source.icons[i].luminance < 15) { tmp.push(source.icons[i]); source.icons.splice(i,1); i--; } } for (var i = 0; i < source.icons.length; i++) { - if (source.icons[i].saturation < 5) { + if (source.icons[i].saturation < 25) { tmp.push(source.icons[i]); source.icons.splice(i,1); i--;