diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 12aa52a144..985cc2deab 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1435,8 +1435,8 @@ select:focus:invalid:focus {
.input-append .active,
.input-prepend .active {
- background-color: #a9dba9;
- border-color: #46a546;
+ background-color: #dff0d8;
+ border-color: #468847;
}
.input-prepend .add-on,
diff --git a/docs/customize.html b/docs/customize.html
index 861621c526..277d9701a2 100644
--- a/docs/customize.html
+++ b/docs/customize.html
@@ -247,21 +247,6 @@
-
Colors
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Sprites
diff --git a/docs/templates/pages/customize.mustache b/docs/templates/pages/customize.mustache
index b25a474d2b..b918486760 100644
--- a/docs/templates/pages/customize.mustache
+++ b/docs/templates/pages/customize.mustache
@@ -179,21 +179,6 @@
- {{_i}}Colors{{/i}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
{{_i}}Sprites{{/i}}
diff --git a/less/forms.less b/less/forms.less
index 155306f7d3..84ca238e04 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -479,8 +479,8 @@ select:focus:invalid {
border-radius: 0;
}
.active {
- background-color: lighten(@green, 30);
- border-color: @green;
+ background-color: @successBackground;
+ border-color: @successText;
}
}
diff --git a/less/labels-badges.less b/less/labels-badges.less
index fafad404e4..6dd8fe0e86 100644
--- a/less/labels-badges.less
+++ b/less/labels-badges.less
@@ -53,8 +53,8 @@ a {
&-danger { background-color: @errorText; }
&-danger[href] { background-color: darken(@errorText, 10%); }
// Warnings (orange)
- &-warning { background-color: @orange; }
- &-warning[href] { background-color: darken(@orange, 10%); }
+ &-warning { background-color: #f89406; }
+ &-warning[href] { background-color: darken(#f89406, 10%); }
// Success (green)
&-success { background-color: @successText; }
&-success[href] { background-color: darken(@successText, 10%); }
diff --git a/less/progress-bars.less b/less/progress-bars.less
index 66180026d9..cbff7f2fda 100644
--- a/less/progress-bars.less
+++ b/less/progress-bars.less
@@ -115,8 +115,8 @@
// Warning (orange)
.progress-warning .bar, .progress .bar-warning {
- #gradient > .vertical(lighten(@orange, 15%), @orange);
+ #gradient > .vertical(lighten(#f89406, 15%), #f89406);
}
.progress-warning.progress-striped .bar, .progress-striped .bar-warning {
- #gradient > .striped(lighten(@orange, 15%));
+ #gradient > .striped(lighten(#f89406, 15%));
}
diff --git a/less/variables.less b/less/variables.less
index ac56b600db..5194a67da1 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -17,17 +17,6 @@
@grayLighter: #eee;
-// Accent colors
-// -------------------------
-@blue: #049cdb;
-@green: #46a546;
-@red: #9d261d;
-@yellow: #ffc40d;
-@orange: #f89406;
-@pink: #c3325f;
-@purple: #7a43b6;
-
-
// Scaffolding
// -------------------------