From e6d8c3f27344f56269d89612d4c2cbf4b5b01e4f Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Fri, 26 Jun 2020 19:40:08 +0200 Subject: [PATCH] fix: input validation borders opacity fix: #481 --- scripts/generator/color-set.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/generator/color-set.ts b/scripts/generator/color-set.ts index e3897d0..8c92ef6 100644 --- a/scripts/generator/color-set.ts +++ b/scripts/generator/color-set.ts @@ -359,9 +359,9 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { /** * Inputs validation style */ - 'inputValidation.errorBorder': `${theme.scheme.base.red}50`, - 'inputValidation.infoBorder': `${theme.scheme.base.blue}50`, - 'inputValidation.warningBorder': `${theme.scheme.base.yellow}50`, + 'inputValidation.errorBorder': `${theme.scheme.base.red}`, + 'inputValidation.infoBorder': `${theme.scheme.base.blue}`, + 'inputValidation.warningBorder': `${theme.scheme.base.yellow}`, /** * Dropdown menu style */