From b973fe6b945c59422458996aa016b0bb678b80d2 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 25 Jun 2017 18:08:43 -0700 Subject: [PATCH] update theme colors --- _data/theme-colors.yml | 20 ++++++++++---------- scss/_variables.scss | 26 +++++++++++++------------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/_data/theme-colors.yml b/_data/theme-colors.yml index 25f86c364e..92ea288384 100644 --- a/_data/theme-colors.yml +++ b/_data/theme-colors.yml @@ -1,16 +1,16 @@ - name: primary hex: "#007aff" - name: secondary - hex: "#ced4da" + hex: "#868e96" - name: success - hex: "#51cf66" -- name: info - hex: "#38d9a9" -- name: warning - hex: "#ff922b" + hex: "#28a745" - name: danger - hex: "#f03e3e" -- name: foreground + hex: "#dc3545" +- name: warning + hex: "#ffc107" +- name: info + hex: "#17a2b8" +- name: light + hex: "#f8f9fa" +- name: dark hex: "#343a40" -- name: background - hex: "#fff" diff --git a/scss/_variables.scss b/scss/_variables.scss index 7d4a3ddbdb..864e0c5306 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -70,15 +70,15 @@ $grays: ( ) !default; $blue: #007bff !default; -$indigo: #4263eb !default; -$purple: #882ae0 !default; -$pink: #e64980 !default; -$red: #f03e3e !default; -$orange: #ff922b !default; -$yellow: #ffd43b !default; -$green: #51cf66 !default; -$teal: #38d9a9 !default; -$cyan: #3bc9db !default; +$indigo: #6610f2 !default; +$purple: #6f42c1 !default; +$pink: #e83e8c !default; +$red: #dc3545 !default; +$orange: #fd7e14 !default; +$yellow: #ffc107 !default; +$green: #28a745 !default; +$teal: #20c997 !default; +$cyan: #17a2b8 !default; $colors: ( blue: $blue, @@ -98,13 +98,13 @@ $colors: ( $theme-colors: ( primary: $blue, - secondary: $gray-400, + secondary: $gray-600, success: $green, info: $cyan, - warning: $orange, + warning: $yellow, danger: $red, - foreground: $gray-800, - background: $white + light: $gray-100, + dark: $gray-800 ) !default;