From 888a9bc32894b4e5b34e26adf541e8b37f022639 Mon Sep 17 00:00:00 2001 From: Sarah Ahmed Date: Tue, 4 Apr 2017 10:50:09 +0500 Subject: [PATCH 1/2] style(type-colors) use bootstrap colors for notification types --- src/styles/types/type-error.scss | 2 +- src/styles/types/type-info.scss | 2 +- src/styles/types/type-success.scss | 2 +- src/styles/types/type-warning.scss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/styles/types/type-error.scss b/src/styles/types/type-error.scss index 1078fe03..5d4c796b 100644 --- a/src/styles/types/type-error.scss +++ b/src/styles/types/type-error.scss @@ -1,6 +1,6 @@ // NOTIFIER: ERROR TYPE STYLES -$notifier-error-background-color: #BF4654; +$notifier-error-background-color: #d9534f; $notifier-error-font-color: #FFF; $notifier-error-icon-color: #FFF; diff --git a/src/styles/types/type-info.scss b/src/styles/types/type-info.scss index fcf192ca..20946ee6 100644 --- a/src/styles/types/type-info.scss +++ b/src/styles/types/type-info.scss @@ -1,6 +1,6 @@ // NOTIFIER: INFO TYPE STYLES -$notifier-info-background-color: #2B90D9; +$notifier-info-background-color: #5bc0de; $notifier-info-font-color: #FFF; $notifier-info-icon-color: #FFF; diff --git a/src/styles/types/type-success.scss b/src/styles/types/type-success.scss index a5e3a7b5..66fff167 100644 --- a/src/styles/types/type-success.scss +++ b/src/styles/types/type-success.scss @@ -1,6 +1,6 @@ // NOTIFIER: SUCCESS TYPE STYLES -$notifier-success-background-color: #A08E5D; +$notifier-success-background-color: #5cb85c; $notifier-success-font-color: #FFF; $notifier-success-icon-color: #FFF; diff --git a/src/styles/types/type-warning.scss b/src/styles/types/type-warning.scss index 91e3a833..45e69fed 100644 --- a/src/styles/types/type-warning.scss +++ b/src/styles/types/type-warning.scss @@ -1,6 +1,6 @@ // NOTIFIER: WARNING TYPE STYLES -$notifier-warning-background-color: #CCA757; +$notifier-warning-background-color: #f0ad4e; $notifier-warning-font-color: #FFF; $notifier-warning-icon-color: #FFF; From e3bca7db563b5b9682e6fe119cce747ba4be56b0 Mon Sep 17 00:00:00 2001 From: Sarah Ahmed Date: Wed, 5 Apr 2017 02:01:25 +0500 Subject: [PATCH 2/2] fix(colors): uppercase HEX --- src/styles/types/type-error.scss | 2 +- src/styles/types/type-info.scss | 2 +- src/styles/types/type-success.scss | 2 +- src/styles/types/type-warning.scss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/styles/types/type-error.scss b/src/styles/types/type-error.scss index 5d4c796b..31bfd3a9 100644 --- a/src/styles/types/type-error.scss +++ b/src/styles/types/type-error.scss @@ -1,6 +1,6 @@ // NOTIFIER: ERROR TYPE STYLES -$notifier-error-background-color: #d9534f; +$notifier-error-background-color: #D9534F; $notifier-error-font-color: #FFF; $notifier-error-icon-color: #FFF; diff --git a/src/styles/types/type-info.scss b/src/styles/types/type-info.scss index 20946ee6..3347eb1c 100644 --- a/src/styles/types/type-info.scss +++ b/src/styles/types/type-info.scss @@ -1,6 +1,6 @@ // NOTIFIER: INFO TYPE STYLES -$notifier-info-background-color: #5bc0de; +$notifier-info-background-color: #5BC0DE; $notifier-info-font-color: #FFF; $notifier-info-icon-color: #FFF; diff --git a/src/styles/types/type-success.scss b/src/styles/types/type-success.scss index 66fff167..ee93429f 100644 --- a/src/styles/types/type-success.scss +++ b/src/styles/types/type-success.scss @@ -1,6 +1,6 @@ // NOTIFIER: SUCCESS TYPE STYLES -$notifier-success-background-color: #5cb85c; +$notifier-success-background-color: #5CB85C; $notifier-success-font-color: #FFF; $notifier-success-icon-color: #FFF; diff --git a/src/styles/types/type-warning.scss b/src/styles/types/type-warning.scss index 45e69fed..6fc46e1b 100644 --- a/src/styles/types/type-warning.scss +++ b/src/styles/types/type-warning.scss @@ -1,6 +1,6 @@ // NOTIFIER: WARNING TYPE STYLES -$notifier-warning-background-color: #f0ad4e; +$notifier-warning-background-color: #F0AD4E; $notifier-warning-font-color: #FFF; $notifier-warning-icon-color: #FFF;