Added css and less files
[bootswatch] / simplex / variables.less
1 // Variables.less
2 // Variables to customize the look and feel of Bootstrap
3 // Swatch: Simplex
4 // -----------------------------------------------------
5
6
7
8 // GLOBAL VALUES
9 // --------------------------------------------------
10
11 // Links
12 @linkColor:             #366DDC;
13 @linkColorHover:        darken(@linkColor, 15%);
14
15 // Grays
16 @black:                 #000;
17 @grayDarker:            #2C2C2C;
18 @grayDark:              #333;
19 @gray:                  #555;
20 @grayLight:             #999;
21 @grayLighter:           #EEE;
22 @white:                 #fff;
23
24 // Accent colors
25 @blue:                  #15C;
26 @blueDark:              #043755;
27 @green:                 #3D9400;
28 @red:                   #E32C3B;
29 @yellow:                #FFCA27;
30 @orange:                #FF6600;
31 @pink:                  #ED2590;
32 @purple:                #9B479F;
33
34 // Typography
35 @baseFontSize:          13px;
36 @baseFontFamily:        arial,sans-serif;
37 @baseLineHeight:        18px;
38 @textColor:             @black;
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:                @grayDarker;
64 @navbarBackgroundHighlight:       @grayDarker;
65
66 @navbarText:                      #AAA;
67 @navbarLinkColor:                 @navbarText;
68 @navbarLinkColorHover:            @gray;
69
70 // Form states and alerts
71 @warningText:             #c09853;
72 @warningBackground:       #fcf8e3;
73 @warningBorder:           darken(spin(@warningBackground, -10), 3%);
74
75 @errorText:               #b94a48;
76 @errorBackground:         #f2dede;
77 @errorBorder:             darken(spin(@errorBackground, -10), 3%);
78
79 @successText:             #468847;
80 @successBackground:       #dff0d8;
81 @successBorder:           darken(spin(@successBackground, -10), 5%);
82
83 @infoText:                #3a87ad;
84 @infoBackground:          #d9edf7;
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%;