aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-06-25 18:08:43 -0700
committerMark Otto <[email protected]>2017-06-25 18:08:43 -0700
commitb973fe6b945c59422458996aa016b0bb678b80d2 (patch)
treed0b5d07b07cc98ef0969538a7093eee97ea25160
parent222eddda5e8308b2b32f44f698bbf1b35ebb476a (diff)
downloadbootstrap-b973fe6b945c59422458996aa016b0bb678b80d2.tar.xz
bootstrap-b973fe6b945c59422458996aa016b0bb678b80d2.zip
update theme colors
-rw-r--r--_data/theme-colors.yml20
-rw-r--r--scss/_variables.scss26
2 files changed, 23 insertions, 23 deletions
diff --git a/_data/theme-colors.yml b/_data/theme-colors.yml
index 25f86c364..92ea28838 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 7d4a3ddbd..864e0c530 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;