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


6
7
8
// LINK COLORS
// -----------

9
10
11
@linkColor:         #0069d6;
@linkColorHover:    darken(@linkColor, 15);

12
13
14
15

// GRAYS
// -----

16
@black:             #000;
17
18
19
20
@grayDark:          lighten(@black, 25%);
@gray:              lighten(@black, 50%);
@grayLight:         lighten(@black, 75%);
@grayLighter:       lighten(@black, 90%);
21
22
@white:             #fff;

23
24
25
26

// ACCENT COLORS
// -------------

27
28
29
30
31
32
33
34
35
36
@blue:              #049CDB;
@blueDark:          #0064CD;
@green:             #46a546;
@red:               #9d261d;
@yellow:            #ffc40d;
@orange:            #f89406;
@pink:              #c3325f;
@purple:            #7a43b6;


37
38
39
// GRID
// ----

40
41
42
43
44
45
46
// Modify the grid styles in mixins.less
@gridColumns:       16;
@gridColumnWidth:   40px;
@gridGutterWidth:   20px;
@extraSpace:        (@gridGutterWidth * 2); // For our grid calculations
@siteWidth:         (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));

47
48
49
50
51
52
53
54

// THEME VARIABLES
// ---------------

// Typography
@baseFontSize:          13px;
@baseFontFamily:        "Helvetica Neue", Helvetica, Arial, sans-serif;
@baseLineHeight:        18px;
55

56
57
// Visuals
@primaryButtonColor:    @blue;