update for bootstrap 2.0.2
[bootswatch] / amelia / variables.less
1 // Variables.less
2 // Variables to customize the look and feel of Bootstrap
3 // Swatch: Amelia
4 // Version: 2.0.2
5 // -----------------------------------------------------
6
7
8
9 // GLOBAL VALUES
10 // --------------------------------------------------
11
12
13 // Grays
14 // -------------------------
15 @black:                 #000;
16 @grayDarker:            #111;
17 @grayDark:              #333;
18 @gray:                  #555;
19 @grayLight:             #aaa;
20 @grayLighter:           #ddd;
21 @white:                 #fff;
22
23
24 // Accent colors
25 // -------------------------
26 @blue:                  #00BCE1;
27 @blueDark:              #1269B0;
28 @green:                 #7FC518;
29 @red:                   #E51925;
30 @yellow:                #EAC504;
31 @orange:                #DF6E1E;
32 @pink:                  #FFBCB9;
33 @purple:                #4D3A7D;
34
35
36 // Scaffolding
37 // -------------------------
38 @bodyBackground:        #003F4D;
39 @textColor:             rgba(256, 256, 256, 0.9);
40
41
42 // Links
43 // -------------------------
44 @linkColor:             lighten(@yellow, 15%);
45 @linkColorHover:        @linkColor;
46
47
48 // Typography
49 // -------------------------
50 @baseFontSize:          14px;
51 @baseFontFamily:        'Cabin', Verdana, sans-serif;
52 @baseLineHeight:        20px;
53 @altFontFamily:         Georgia, "Times New Roman", Times, serif;
54
55 @headingsFontFamily:    'Lobster', cursive; // empty to use BS default, @baseFontFamily
56 @headingsFontWeight:    normal;    // instead of browser default, bold
57 @headingsColor:         inherit; // empty to use BS default, @textColor
58
59
60 // Tables
61 // -------------------------
62 @tableBackground:                   lighten(#147E88, 10%); // overall background-color
63 @tableBackgroundAccent:             lighten(#147E88, 15%); // for striping
64 @tableBackgroundHover:              rgba(256, 256, 256, 0.4); // for hover
65 @tableBorder:                       lighten(#147E88, 12%); // table and cell border
66
67
68 // Buttons
69 // -------------------------
70 @btnBackground:                     @grayLighter;
71 @btnBackgroundHighlight:            @grayLighter;
72 @btnBorder:                         rgba(0, 0, 0, 0);
73
74 @btnPrimaryBackground:              @navbarBackground;
75 @btnPrimaryBackgroundHighlight:     spin(@btnPrimaryBackground, 15%);
76
77 @btnInfoBackground:                 @purple;
78 @btnInfoBackgroundHighlight:        @purple;
79
80 @btnSuccessBackground:              @green;
81 @btnSuccessBackgroundHighlight:     @green;
82
83 @btnWarningBackground:              @orange;
84 @btnWarningBackgroundHighlight:     @orange;
85
86 @btnDangerBackground:               darken(@yellow, 3%);
87 @btnDangerBackgroundHighlight:      darken(@yellow, 3%);
88
89 @btnInverseBackground:              #27666D;
90 @btnInverseBackgroundHighlight:     #27666D;
91
92
93 // Forms
94 // -------------------------
95 @inputBackground:               @white;
96 @inputBorder:                   transparent;
97 @inputDisabledBackground:       @grayLighter;
98
99
100 // Dropdowns
101 // -------------------------
102 @dropdownBackground:            @white;
103 @dropdownBorder:                rgba(0,0,0,.2);
104 @dropdownLinkColor:             @bodyBackground;
105 @dropdownLinkColorHover:        @white;
106 @dropdownLinkBackgroundHover:   rgba(0, 57, 59, 0.9);
107
108
109
110
111 // COMPONENT VARIABLES
112 // --------------------------------------------------
113
114 // Z-index master list
115 // -------------------------
116 // Used for a bird's eye view of components dependent on the z-axis
117 // Try to avoid customizing these :)
118 @zindexDropdown:          1000;
119 @zindexPopover:           1010;
120 @zindexTooltip:           1020;
121 @zindexFixedNavbar:       1030;
122 @zindexModalBackdrop:     1040;
123 @zindexModal:             1050;
124
125
126 // Sprite icons path
127 // -------------------------
128 @iconSpritePath:          "../img/glyphicons-halflings.png";
129 @iconWhiteSpritePath:     "../img/glyphicons-halflings-white.png";
130
131
132 // Input placeholder text color
133 // -------------------------
134 @placeholderText:         @grayLight;
135
136
137 // Hr border color
138 // -------------------------
139 @hrBorder:                transparent;
140
141
142 // Navbar
143 // -------------------------
144 @navbarHeight:                    50px;
145 @navbarBackground:                #AD1D28;
146 @navbarBackgroundHighlight:       #AD1D28;
147
148 @navbarText:                      @white;
149 @navbarLinkColor:                 @white;
150 @navbarLinkColorHover:            @white;
151 @navbarLinkColorActive:           @navbarLinkColorHover;
152 @navbarLinkBackgroundHover:       lighten(@navbarBackground, 10%);
153 @navbarLinkBackgroundActive:      lighten(@navbarBackground, 10%);
154
155 @navbarSearchBackground:          rgba(0, 0, 0, 0);
156 @navbarSearchBackgroundFocus:     lighten(@navbarBackground, 25%);
157 @navbarSearchBorder:              darken(@navbarSearchBackground, 30%);
158 @navbarSearchPlaceholderColor:    @textColor;
159
160
161 // Hero unit
162 // -------------------------
163 @heroUnitBackground:              #3CB9C6;
164 @heroUnitHeadingColor:            inherit;
165 @heroUnitLeadColor:               inherit;
166
167
168 // Form states and alerts
169 // -------------------------
170 @warningText:             #c09853;
171 @warningBackground:       #fcf8e3;
172 @warningBorder:           darken(spin(@warningBackground, -10), 3%);
173
174 @errorText:               #b94a48;
175 @errorBackground:         #f2dede;
176 @errorBorder:             darken(spin(@errorBackground, -10), 3%);
177
178 @successText:             #468847;
179 @successBackground:       #dff0d8;
180 @successBorder:           darken(spin(@successBackground, -10), 5%);
181
182 @infoText:                #3a87ad;
183 @infoBackground:          #d9edf7;
184 @infoBorder:              darken(spin(@infoBackground, -10), 7%);
185
186
187
188
189 // GRID
190 // --------------------------------------------------
191
192 // Default 940px grid
193 // -------------------------
194 @gridColumns:             12;
195 @gridColumnWidth:         60px;
196 @gridGutterWidth:         20px;
197 @gridRowWidth:            (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
198
199
200 // Fluid grid
201 // -------------------------
202 @fluidGridColumnWidth:    6.382978723%;
203 @fluidGridGutterWidth:    2.127659574%;