Better labels in cerulean
[bootswatch] / cerulean / variables.less
1 // Variables.less
2 // Variables to customize the look and feel of Bootstrap
3 // Swatch: Cerulean
4 // -----------------------------------------------------
5
6
7
8 // GLOBAL VALUES
9 // --------------------------------------------------
10
11 // Links
12 @linkColor:             #369BD7;
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:                  #3E78B3;
26 @blueDark:              #033C73;
27 @green:                 #73A839;
28 @red:                   #C71C22;
29 @yellow:                #F7B42C;
30 @orange:                #DD5600;
31 @pink:                  #F49AC1;
32 @purple:                #9760B3;
33
34 // Typography
35 @baseFontSize:          13px;
36 @baseFontFamily:        "Helvetica Neue", Helvetica, Arial, sans-serif;
37 @baseLineHeight:        18px;
38 @textColor:             @gray;
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 // Input placeholder text color
59 @placeholderText:       @grayLight;
60
61 // Navbar
62 @navbarHeight:                    40px;
63 @navbarBackground:                @linkColor;
64 @navbarBackgroundHighlight:       lighten(@linkColor, 10%);
65
66 @navbarText:                      @grayLighter;
67 @navbarLinkColor:                 @grayLighter;
68 @navbarLinkColorHover:            @white;
69
70 // Form states and alerts
71 @warningText:             #908A62;
72 @warningBackground:       #EDEBE1;
73 @warningBorder:           darken(spin(@warningBackground, -10), 3%);
74
75 @errorText:               #C45559;
76 @errorBackground:         #EDDBE3;
77 @errorBorder:             darken(spin(@errorBackground, -10), 3%);
78
79 @successText:             #565C4C;
80 @successBackground:       #CDB;
81 @successBorder:           darken(spin(@successBackground, -10), 5%);
82
83 @infoText:                #908A62;
84 @infoBackground:          #EDEBE1;
85 @infoBorder:              darken(spin(@infoBackground, -10), 7%);
86
87
88
89 // GRID
90 // --------------------------------------------------
91
92 // Default 940px grid
93 @gridColumns:             12;
94 @gridColumnWidth:         60px;
95 @gridGutterWidth:         20px;
96 @gridRowWidth:            (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
97
98 // Fluid grid
99 @fluidGridColumnWidth:    6.382978723%;
100 @fluidGridGutterWidth:    2.127659574%;