Swatch update for Bootstrap 2.0.1
[bootswatch] / spacelab / variables.less
1 // Variables.less
2 // Variables to customize the look and feel of Bootstrap
3 // Swatch: Spacelab
4 // -----------------------------------------------------
5
6
7 // GLOBAL VALUES
8 // --------------------------------------------------
9
10 // Links
11 @linkColor:             #4183C4;
12 @linkColorHover:        #4183C4;
13
14 // Grays
15 @black:                 #000;
16 @grayDarker:            #222;
17 @grayDark:              #333;
18 @gray:                  #555;
19 @grayLight:             #999;
20 @grayLighter:           #eee;
21 @white:                 #fff;
22
23 // Accent colors
24 @blue:                  #4183C4;
25 @blueDark:              #405A6A;
26 @green:                 #84DE81;
27 @red:                   #E5322C;
28 @yellow:                #F4CA00;
29 @orange:                #FF7D00;
30 @pink:                  #F44B8C;
31 @purple:                #405A6A;
32
33 // Typography
34 @baseFontSize:          13px;
35 @baseFontFamily:        "Helvetica Neue", Helvetica, Arial, sans-serif;
36 @baseLineHeight:        18px;
37 @textColor:             @grayDark;
38
39 // sans
40 @primaryButtonBackground:    @linkColor;
41
42
43
44 // COMPONENT VARIABLES
45 // --------------------------------------------------
46
47 // Z-index master list
48 // Used for a bird's eye view of components dependent on the z-axis
49 // Try to avoid customizing these :)
50 @zindexDropdown:        1000;
51 @zindexPopover:         1010;
52 @zindexTooltip:         1020;
53 @zindexFixedNavbar:     1030;
54 @zindexModalBackdrop:   1040;
55 @zindexModal:           1050;
56
57 // Sprite icons path
58 @iconSpritePath:          "../img/glyphicons-halflings.png";
59 @iconWhiteSpritePath:     "../img/glyphicons-halflings-white.png";
60
61 // Input placeholder text color
62 @placeholderText:       @grayLight;
63
64 // Hr border color
65 @hrBorder:                @grayLighter;
66
67 // Navbar
68 @navbarHeight:                    40px;
69 @navbarBackground:                #EAEAEA;
70 @navbarBackgroundHighlight:       lighten(@navbarBackground, 15%);
71 @navbarLinkBackgroundHover:       transparent;
72
73 @navbarText:                      @grayDarker;
74 @navbarLinkColor:                 @grayDarker;
75 @navbarLinkColorHover:            @linkColor;
76
77 // Form states and alerts
78 @warningText:             #393939;
79 @warningBackground:       #F5F3B4;
80 @warningBorder:           darken(spin(@warningBackground, -10), 3%);
81
82 @errorText:               @warningText;
83 @errorBackground:         #FFE9E9;
84 @errorBorder:             darken(spin(@errorBackground, -10), 3%);
85
86 @successText:             #333;
87 @successBackground:       #BEDEBE;
88 @successBorder:           darken(spin(@successBackground, -10), 5%);
89
90 @infoText:                #1B3650;
91 @infoBackground:          #E4F0FF;
92 @infoBorder:              darken(spin(@infoBackground, -10), 7%);
93
94
95
96 // GRID
97 // --------------------------------------------------
98
99 // Default 940px grid
100 @gridColumns:             12;
101 @gridColumnWidth:         60px;
102 @gridGutterWidth:         20px;
103 @gridRowWidth:            (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
104
105 // Fluid grid
106 @fluidGridColumnWidth:    6.382978723%;
107 @fluidGridGutterWidth:    2.127659574%;