From 48f5408d2ca68e0a936672af01c47aa8d7bce99e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 29 Dec 2017 11:31:37 -0800 Subject: [PATCH] Darken $gray-600 by 10% for AA contrast Closes #23319. Both `.text-muted` and `.btn-outline-secondary` (and indeed all secondary items) make use of `$gray-600`. New value provides a contrast ratio of 4.69. --- scss/_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_variables.scss b/scss/_variables.scss index 26b44e90d850..b2af0a466f23 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -15,7 +15,7 @@ $gray-200: #e9ecef !default; $gray-300: #dee2e6 !default; $gray-400: #ced4da !default; $gray-500: #adb5bd !default; -$gray-600: #868e96 !default; +$gray-600: #6c757d !default; $gray-700: #495057 !default; $gray-800: #343a40 !default; $gray-900: #212529 !default;