From 94c571fec3696e584a15dfa4966448f59d9c80a3 Mon Sep 17 00:00:00 2001 From: Thierry Date: Sun, 29 Mar 2015 18:48:13 -0700 Subject: [PATCH] Add 'transparent' and 'inherit' to background-color --- src/rules.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/rules.js b/src/rules.js index a11e4c70..d266013b 100644 --- a/src/rules.js +++ b/src/rules.js @@ -583,7 +583,11 @@ module.exports = [ properties: ['background-color'], allowCustom: true, allowCustomAutoSuffix: true, - allowSuffixToValue: true + allowSuffixToValue: true, + rules: [ + {suffix: 't', values: ['transparent']}, + {suffix: 'inh', values: ['inherit']} + ] }, /* background-clip */