variables.less 4.35 KB
Newer Older
1
2
3
// Variables.less
// Variables to customize the look and feel of Bootstrap
// -----------------------------------------------------
4
5
6



Mark Otto's avatar
Mark Otto committed
7
8
9
10
11
// GLOBAL VALUES
// --------------------------------------------------

// Grays
@black:                 #000;
Jon Stevens's avatar
Jon Stevens committed
12
@grayDarker:            #222;
Mark Otto's avatar
Mark Otto committed
13
14
15
16
17
18
19
@grayDark:              #333;
@gray:                  #555;
@grayLight:             #999;
@grayLighter:           #eee;
@white:                 #fff;

// Accent colors
20
21
@blue:                  #049cdb;
@blueDark:              #0064cd;
Mark Otto's avatar
Mark Otto committed
22
23
24
25
26
27
28
@green:                 #46a546;
@red:                   #9d261d;
@yellow:                #ffc40d;
@orange:                #f89406;
@pink:                  #c3325f;
@purple:                #7a43b6;

29
30
31
32
33
34
35
36
// Scaffolding
@bodyBackground:        @white;
@textColor:             @grayDark;

// Links
@linkColor:             #08c;
@linkColorHover:        #069;

Mark Otto's avatar
Mark Otto committed
37
38
39
40
// Typography
@baseFontSize:          13px;
@baseFontFamily:        "Helvetica Neue", Helvetica, Arial, sans-serif;
@baseLineHeight:        18px;
41
42
43
44
45
@altFontFamily:         Georgia, "Times New Roman", Times, serif;

@headingsFontFamily:    ''; // empty to use BS default, @baseFontFamily
@headingsFontWeight:    normal; // instead of browser default, bold
@headingsColor:         ''; // empty to use BS default, @textColor
46

Mark Otto's avatar
Mark Otto committed
47
// Buttons
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@btnBackground:                     @white;
@btnBackgroundHighlight:            darken(@white, 10%);
@btnBorder:                         #ccc;

@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
Mark Otto's avatar
Mark Otto committed
77
@dropdownBackground:            @white;
78
79
@dropdownLinkColor:             @grayDark;
@dropdownLinkColorHover:        @white;
80
@dropdownLinkBackgroundHover:   @linkColor;
81

82
83


Mark Otto's avatar
Mark Otto committed
84
85
// COMPONENT VARIABLES
// --------------------------------------------------
86

Mark Otto's avatar
Mark Otto committed
87
88
// Z-index master list
// Used for a bird's eye view of components dependent on the z-axis
89
// Try to avoid customizing these :)
90
91
92
93
94
95
96
97
98
99
@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";
100

101
// Input placeholder text color
102
@placeholderText:         @grayLight;
103

Mark Otto's avatar
Mark Otto committed
104
105
106
// Hr border color
@hrBorder:                @grayLighter;

107
// Navbar
108
@navbarHeight:                    40px;
109
110
@navbarBackground:                @grayDarker;
@navbarBackgroundHighlight:       @grayDark;
111
@navbarLinkBackgroundHover:       transparent;
112

113
114
115
116
@navbarText:                      @grayLight;
@navbarLinkColor:                 @grayLight;
@navbarLinkColorHover:            @white;

117
118
119
120
121
// Hero unit
@heroUnitBackground:              #312f2e;
@heroUnitHeadingColor:            @white;
@heroUnitLeadColor:               @white;

122
123
124
// Form states and alerts
@warningText:             #c09853;
@warningBackground:       #fcf8e3;
125
@warningBorder:           darken(spin(@warningBackground, -10), 3%);
126
127
128

@errorText:               #b94a48;
@errorBackground:         #f2dede;
129
@errorBorder:             darken(spin(@errorBackground, -10), 3%);
130
131
132

@successText:             #468847;
@successBackground:       #dff0d8;
133
@successBorder:           darken(spin(@successBackground, -10), 5%);
134
135
136

@infoText:                #3a87ad;
@infoBackground:          #d9edf7;
137
@infoBorder:              darken(spin(@infoBackground, -10), 7%);
138

139

140
141
142
143
144
145
146
147
148
149
150
151
152

// GRID
// --------------------------------------------------

// Default 940px grid
@gridColumns:             12;
@gridColumnWidth:         60px;
@gridGutterWidth:         20px;
@gridRowWidth:            (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));

// Fluid grid
@fluidGridColumnWidth:    6.382978723%;
@fluidGridGutterWidth:    2.127659574%;