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