Swatch update for Bootstrap 2.0.1
[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 // 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:                @linkColor;
71 @navbarBackgroundHighlight:       lighten(@linkColor, 10%);
72 @navbarLinkBackgroundHover:       transparent;
73
74 @navbarText:                      @grayLighter;
75 @navbarLinkColor:                 @grayLighter;
76 @navbarLinkColorHover:            @white;
77
78 // Form states and alerts
79 @warningText:             darken(@linkColor, 20%);
80 @warningBackground:       lighten(@linkColor, 20%);
81 @warningBorder:           darken(spin(@warningBackground, -10), 3%);
82
83 @errorText:               darken(#C45559, 5%);
84 @errorBackground:         #EDDBE3;
85 @errorBorder:             darken(spin(@errorBackground, -10), 3%);
86
87 @successText:             darken(@green, 5%);
88 @successBackground:       #CDB;
89 @successBorder:           darken(spin(@successBackground, -10), 5%);
90
91 @infoText:                darken(#908A62, 5%);
92 @infoBackground:          #EDEBE1;
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%;