diff options
| author | Mario Bonito <[email protected]> | 2013-11-09 13:03:21 -0500 |
|---|---|---|
| committer | Mario Bonito <[email protected]> | 2013-11-09 13:03:21 -0500 |
| commit | 4386650e60efea3fe8ecaab0e0e14b303eea4cac (patch) | |
| tree | e126c77b8ea1afc74d8b03420a656a18c4583a9e | |
| parent | 463343af63344dbbc3db04f40b0b804baa919b7e (diff) | |
| download | bootstrap-4386650e60efea3fe8ecaab0e0e14b303eea4cac.tar.xz bootstrap-4386650e60efea3fe8ecaab0e0e14b303eea4cac.zip | |
Corrected color contrast to WCAG 2.0 AA
| -rw-r--r-- | docs-assets/css/docs.css | 4 | ||||
| -rw-r--r-- | less/variables.less | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 7abf6ed09..4b3bd0c47 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -586,14 +586,14 @@ h1[id] { border-color: #faebcc; } .bs-callout-warning h4 { - color: #c09853; + color: #8a6d3b; } .bs-callout-info { background-color: #f4f8fa; border-color: #bce8f1; } .bs-callout-info h4 { - color: #3a87ad; + color: #34789a; } diff --git a/less/variables.less b/less/variables.less index e596215d0..6f2551e2c 100644 --- a/less/variables.less +++ b/less/variables.less @@ -375,19 +375,19 @@ // Form states and alerts // ------------------------- -@state-success-text: #468847; +@state-success-text: #3c763d; @state-success-bg: #dff0d8; @state-success-border: darken(spin(@state-success-bg, -10), 5%); -@state-info-text: #3a87ad; +@state-info-text: #31708f; @state-info-bg: #d9edf7; @state-info-border: darken(spin(@state-info-bg, -10), 7%); -@state-warning-text: #c09853; +@state-warning-text: #8a6d3b; @state-warning-bg: #fcf8e3; @state-warning-border: darken(spin(@state-warning-bg, -10), 5%); -@state-danger-text: #b94a48; +@state-danger-text: #a94442; @state-danger-bg: #f2dede; @state-danger-border: darken(spin(@state-danger-bg, -10), 5%); |
