From 224f13998efd06ba66626d760b344adbd0fb1f17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Ramos?= Date: Mon, 16 Jan 2017 19:42:12 +0000 Subject: [PATCH] add forms colors --- ui/src/shared/constants/colors.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ui/src/shared/constants/colors.js b/ui/src/shared/constants/colors.js index d5f20123..2e4b5ff0 100644 --- a/ui/src/shared/constants/colors.js +++ b/ui/src/shared/constants/colors.js @@ -42,6 +42,11 @@ const notifications = { warningLight: '#FFFAED', }; +const forms = { + inputError: '#DA4B42', + inputWarning: '#E4A700' +}; + const metrics = { miniBackground: '#F3F4F9', seperator: '#D9DEF3' @@ -58,7 +63,8 @@ const colors = { ...notifications, ...metrics, ...topology, - fonts, + ...forms, + fonts }; module.exports = colors;