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