aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/colorRules/foregroundCheck.js
diff options
context:
space:
mode:
Diffstat (limited to 'exampleData/ruleSets/colorRules/foregroundCheck.js')
-rw-r--r--exampleData/ruleSets/colorRules/foregroundCheck.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/exampleData/ruleSets/colorRules/foregroundCheck.js b/exampleData/ruleSets/colorRules/foregroundCheck.js
index 9102bbe..0cbb2ae 100644
--- a/exampleData/ruleSets/colorRules/foregroundCheck.js
+++ b/exampleData/ruleSets/colorRules/foregroundCheck.js
@@ -1,17 +1,16 @@
-exports.name = 'Background Check';
+exports.name = 'Foreground Check';
exports.description =
- [ 'Backgrounds colors should be in the set:'
- , '#00 #FF #3D #F7 #C2 #B4 #4E'
+ [ 'Foreground colors should be in the set:'
+ , '#00 #FF #3D #F7 #C2 #B4 #4E #FFCB05 #7B8738'
].join('\n');
-exports.rule = function() {
- var rule = this;
+exports.rule = function(report) {
var allow = '#00 #FF #3D #F7 #C2 #B4 #4E #FFCB05 #7B8738'.split(' ');
$5(':visible')
.cssIsNot('color', allow, fiveui.color.colorToHex)
.each(function(i, elt) {
- var color = fiveui.color.colorToHex($(elt).css('color'));
- rule.report('foreground color: ' + color, elt);
- });
+ var color = fiveui.color.colorToHex($(elt).css('color'));
+ report.error('foreground color: ' + color, elt);
+ });
};