blob: 9093f23c80909d9e88961ca92a2710bb38dfa84f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
$gray-darker: #222;
$gray-dark: #282828;
$gray: #555;
$gray-light: #888;
$gray-lighter: #ADAFAE;
$brand-primary: #2A9FD6;
$brand-success: #77B300;
$brand-info: #9933CC;
$brand-warning: #FF8800;
$brand-danger: #CC0000;
$body-bg: #060606;
$text-color: $gray-light;
$link-color: $brand-primary;
$link-hover-color: $link-color;
$headings-color: #fff;
$text-muted: $gray-light;
//** Global color for active items (e.g., navs or dropdowns).
$component-active-color: #fff;
//** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns.
$caret-width-base: 4px;
//** Carets increase slightly in size for larger components.
$caret-width-large: 5px;
//** Background for the dropdown menu.
$dropdown-bg: $gray-darker;
//** Dropdown menu `border-color`.
$dropdown-border: rgba(255,255,255,0.1);
//** Dropdown menu `border-color` **for IE8**.
$dropdown-fallback-border: #444;
//** Divider color for between dropdown items.
$dropdown-divider-bg: rgba(255,255,255,0.1);
//** Active dropdown menu item text color.
$dropdown-link-active-color: #fff;
//** Active dropdown menu item background color.
$dropdown-link-active-bg: $component-active-bg;
//** Dropdown link text color.
$dropdown-link-color: #fff;
//** Hover color for dropdown links.
$dropdown-link-hover-color: #fff;
//** Hover background for dropdown links.
$dropdown-link-hover-bg: $dropdown-link-active-bg;
//** Disabled dropdown menu item background color.
$dropdown-link-disabled-color: $text-muted;
//** Text color for headers within dropdown menus.
$dropdown-header-color: $text-muted;
// Note: Deprecated $dropdown-caret-color as of v3.1.0
$dropdown-caret-color: #000;
|