summaryrefslogtreecommitdiff
path: root/simplex/variables.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-03-13 18:41:44 -0400
committerThomas Park <thomas@thomaspark.me>2012-03-13 18:41:44 -0400
commit43a4a1fd764fd15cc530e19a3643cf36d23079b6 (patch)
tree21d9e6d62e85dab7f4fb1caa032a01bdd210db4e /simplex/variables.less
parent342cce47318fbde6612c156bb1483a111bfcfd4a (diff)
update for bootstrap 2.0.2
Diffstat (limited to 'simplex/variables.less')
-rwxr-xr-xsimplex/variables.less133
1 files changed, 114 insertions, 19 deletions
diff --git a/simplex/variables.less b/simplex/variables.less
index 91b4db2c..568c1d2a 100755
--- a/simplex/variables.less
+++ b/simplex/variables.less
@@ -1,6 +1,7 @@
// Variables.less
// Variables to customize the look and feel of Bootstrap
// Swatch: Simplex
+// Version: 2.0.2
// -----------------------------------------------------
@@ -8,20 +9,20 @@
// GLOBAL VALUES
// --------------------------------------------------
-// Links
-@linkColor: #366DDC;
-@linkColorHover: darken(@linkColor, 15%);
// Grays
+// -------------------------
@black: #000;
@grayDarker: #2C2C2C;
@grayDark: #333;
@gray: #555;
@grayLight: #999;
-@grayLighter: #EEE;
+@grayLighter: #eee;
@white: #fff;
+
// Accent colors
+// -------------------------
@blue: #15C;
@blueDark: #043755;
@green: #3D9400;
@@ -31,14 +32,79 @@
@pink: #ED2590;
@purple: #9B479F;
+
+// Scaffolding
+// -------------------------
+@bodyBackground: @white;
+@textColor: @black;
+
+
+// Links
+// -------------------------
+@linkColor: #366DDC;
+@linkColorHover: darken(@linkColor, 15%);
+
+
// Typography
+// -------------------------
@baseFontSize: 13px;
-@baseFontFamily: arial,sans-serif;
+@baseFontFamily: Arial, Helvetica, sans-serif;
@baseLineHeight: 18px;
-@textColor: @black;
+@altFontFamily: Georgia, "Times New Roman", Times, serif;
+
+@headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
+@headingsFontWeight: bold; // instead of browser default, bold
+@headingsColor: inherit; // empty to use BS default, @textColor
+
+
+// Tables
+// -------------------------
+@tableBackground: transparent; // overall background-color
+@tableBackgroundAccent: #f9f9f9; // for striping
+@tableBackgroundHover: #f5f5f5; // for hover
+@tableBorder: #ddd; // table and cell border
+
// Buttons
-@primaryButtonBackground: @linkColor;
+// -------------------------
+@btnBackground: @white;
+@btnBackgroundHighlight: darken(@white, 10%);
+@btnBorder: darken(@white, 20%);
+
+@btnPrimaryBackground: @linkColor;
+@btnPrimaryBackgroundHighlight: spin(@btnPrimaryBackground, 15%);
+
+@btnInfoBackground: #5bc0de;
+@btnInfoBackgroundHighlight: #2f96b4;
+
+@btnSuccessBackground: #62c462;
+@btnSuccessBackgroundHighlight: #51a351;
+
+@btnWarningBackground: lighten(@orange, 15%);
+@btnWarningBackgroundHighlight: @orange;
+
+@btnDangerBackground: #ee5f5b;
+@btnDangerBackgroundHighlight: #bd362f;
+
+@btnInverseBackground: @gray;
+@btnInverseBackgroundHighlight: @grayDarker;
+
+
+// Forms
+// -------------------------
+@inputBackground: @white;
+@inputBorder: #ccc;
+@inputDisabledBackground: @grayLighter;
+
+
+// Dropdowns
+// -------------------------
+@dropdownBackground: @white;
+@dropdownBorder: rgba(0,0,0,.2);
+@dropdownLinkColor: @grayDark;
+@dropdownLinkColorHover: @white;
+@dropdownLinkBackgroundHover: @linkColor;
+
@@ -46,63 +112,92 @@
// --------------------------------------------------
// Z-index master list
+// -------------------------
// Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :)
-@zindexDropdown: 1000;
-@zindexPopover: 1010;
-@zindexTooltip: 1020;
-@zindexFixedNavbar: 1030;
-@zindexModalBackdrop: 1040;
-@zindexModal: 1050;
+@zindexDropdown: 1000;
+@zindexPopover: 1010;
+@zindexTooltip: 1020;
+@zindexFixedNavbar: 1030;
+@zindexModalBackdrop: 1040;
+@zindexModal: 1050;
+
// Sprite icons path
+// -------------------------
@iconSpritePath: "../img/glyphicons-halflings.png";
@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
+
// Input placeholder text color
-@placeholderText: @grayLight;
+// -------------------------
+@placeholderText: @grayLight;
+
// Hr border color
+// -------------------------
@hrBorder: @grayLighter;
+
// Navbar
+// -------------------------
@navbarHeight: 40px;
@navbarBackground: @grayDarker;
@navbarBackgroundHighlight: @grayDarker;
-@navbarLinkBackgroundHover: transparent;
@navbarText: #AAA;
@navbarLinkColor: @navbarText;
@navbarLinkColorHover: @gray;
+@navbarLinkColorActive: @navbarLinkColorHover;
+@navbarLinkBackgroundHover: transparent;
+@navbarLinkBackgroundActive: @navbarBackground;
+
+@navbarSearchBackground: lighten(@navbarBackground, 25%);
+@navbarSearchBackgroundFocus: @white;
+@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
+@navbarSearchPlaceholderColor: #ccc;
+
+
+// Hero unit
+// -------------------------
+@heroUnitBackground: @grayLighter;
+@heroUnitHeadingColor: inherit;
+@heroUnitLeadColor: inherit;
+
// Form states and alerts
-@warningText: #c09853;
+// -------------------------
+@warningText: @orange;
@warningBackground: #fcf8e3;
@warningBorder: darken(spin(@warningBackground, -10), 3%);
-@errorText: #b94a48;
+@errorText: @red;
@errorBackground: #f2dede;
@errorBorder: darken(spin(@errorBackground, -10), 3%);
-@successText: #468847;
+@successText: @green;
@successBackground: #dff0d8;
@successBorder: darken(spin(@successBackground, -10), 5%);
-@infoText: #3a87ad;
+@infoText: @blue;
@infoBackground: #d9edf7;
@infoBorder: darken(spin(@infoBackground, -10), 7%);
+
// GRID
// --------------------------------------------------
// Default 940px grid
+// -------------------------
@gridColumns: 12;
@gridColumnWidth: 60px;
@gridGutterWidth: 20px;
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
+
// Fluid grid
+// -------------------------
@fluidGridColumnWidth: 6.382978723%;
@fluidGridGutterWidth: 2.127659574%;