summaryrefslogtreecommitdiff
path: root/cyborg/variables.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-05-01 01:53:21 -0400
committerThomas Park <thomas@thomaspark.me>2012-05-01 01:53:21 -0400
commit0812eaeb2ba6e78dcf21c4652a009ccf55deb95b (patch)
treef2a1add14fa965bf0df671b34c630848de66a9df /cyborg/variables.less
parentf6bc5bee91809d50d1082743d9efc90ab25b81fb (diff)
Revert "Revert "all: update to 2.0.3""
This reverts commit f6bc5bee91809d50d1082743d9efc90ab25b81fb.
Diffstat (limited to 'cyborg/variables.less')
-rwxr-xr-xcyborg/variables.less38
1 files changed, 20 insertions, 18 deletions
diff --git a/cyborg/variables.less b/cyborg/variables.less
index 15d28f2d..7ee3bfd3 100755
--- a/cyborg/variables.less
+++ b/cyborg/variables.less
@@ -1,11 +1,9 @@
// Variables.less
// Variables to customize the look and feel of Bootstrap
// Swatch: Cyborg
-// Version: 2.0.2
+// Version: 2.0.3
// -----------------------------------------------------
-
-
// GLOBAL VALUES
// --------------------------------------------------
@@ -47,10 +45,14 @@
// Typography
// -------------------------
+@sansFontFamily: 'Droid Sans', sans-serif;
+@serifFontFamily: Georgia, "Times New Roman", Times, serif;
+@monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
+
@baseFontSize: 13px;
-@baseFontFamily: 'Droid Sans', sans-serif;
+@baseFontFamily: @sansFontFamily;
@baseLineHeight: 18px;
-@altFontFamily: Georgia, "Times New Roman", Times, serif;
+@altFontFamily: @serifFontFamily;
@headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
@headingsFontWeight: normal; // instead of browser default, bold
@@ -67,35 +69,36 @@
// Buttons
// -------------------------
-@btnBackground: @white;
-@btnBackgroundHighlight: darken(@white, 10%);
+@btnBackground: darken(@gray, 20%);
+@btnBackgroundHighlight: darken(@gray, 25%);
@btnBorder: rgba(0, 0, 0, 0);
@btnPrimaryBackground: @blueDark;
@btnPrimaryBackgroundHighlight: darken(@blueDark, 10%);
-@btnInfoBackground: #5bc0de;
-@btnInfoBackgroundHighlight: #2f96b4;
+@btnInfoBackground: darken(@gray, 40%);
+@btnInfoBackgroundHighlight: darken(@gray, 50%);
-@btnSuccessBackground: #62c462;
-@btnSuccessBackgroundHighlight: #51a351;
+@btnSuccessBackground: lighten(@green, 10%);
+@btnSuccessBackgroundHighlight: @green;
@btnWarningBackground: lighten(@orange, 15%);
@btnWarningBackgroundHighlight: @orange;
-@btnDangerBackground: #ee5f5b;
-@btnDangerBackgroundHighlight: #bd362f;
+@btnDangerBackground: lighten(@red, 10%);
+@btnDangerBackgroundHighlight: @red;
-@btnInverseBackground: @gray;
-@btnInverseBackgroundHighlight: @grayDarker;
+@btnInverseBackground: lighten(@purple, 5%);
+@btnInverseBackgroundHighlight: @purple;
// Forms
// -------------------------
@inputBackground: #ccc;
@inputBorder: #bbb;
+@inputBorderRadius: 3px;
@inputDisabledBackground: @grayLighter;
-
+@formActionsBackground: transparent;
// Dropdowns
// -------------------------
@@ -156,6 +159,7 @@
@navbarSearchBackgroundFocus: @white;
@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
@navbarSearchPlaceholderColor: #ccc;
+@navbarBrandColor: @navbarLinkColor;
// Hero unit
@@ -185,7 +189,6 @@
-
// GRID
// --------------------------------------------------
@@ -196,7 +199,6 @@
@gridGutterWidth: 20px;
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
-
// Fluid grid
// -------------------------
@fluidGridColumnWidth: 6.382978723%;