Skip to content

Commit

Permalink
(less) Merge pull request twbs#11432 from masterbee/WCAG2-color-contrast
Browse files Browse the repository at this point in the history
Corrected color contrast to WCAG 2.0 AA (Accessibility Tweak) - Forms and Alerts
  • Loading branch information
mdo committed Nov 30, 2013
2 parents 85ecba6 + bc10038 commit d9bc105
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -372,19 +372,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%);

Expand Down

0 comments on commit d9bc105

Please sign in to comment.