_variables.scss 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. // a flag to toggle asset pipeline / compass integration
  2. // defaults to true if twbs-font-path function is present (no function => twbs-font-path('') parsed as string == right side)
  3. // in Sass 3.3 this can be improved with: function-exists(twbs-font-path)
  4. $bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
  5. //
  6. // Variables
  7. // --------------------------------------------------
  8. //== Colors
  9. //
  10. //## Gray and brand colors for use across Bootstrap.
  11. $gray-darker: lighten(#000, 13.5%) !default; // #222
  12. $gray-dark: lighten(#000, 20%) !default; // #333
  13. $gray: lighten(#000, 33.5%) !default; // #555
  14. $gray-light: lighten(#000, 60%) !default; // #999
  15. $gray-lighter: lighten(#000, 93.5%) !default; // #eee
  16. $brand-primary: #428bca !default;
  17. $brand-success: #5cb85c !default;
  18. $brand-info: #5bc0de !default;
  19. $brand-warning: #f0ad4e !default;
  20. $brand-danger: #d9534f !default;
  21. //== Scaffolding
  22. //
  23. // ## Settings for some of the most global styles.
  24. //** Background color for `<body>`.
  25. $body-bg: #fff !default;
  26. //** Global text color on `<body>`.
  27. $text-color: $gray-dark !default;
  28. //** Global textual link color.
  29. $link-color: $brand-primary !default;
  30. //** Link hover color set via `darken()` function.
  31. $link-hover-color: darken($link-color, 15%) !default;
  32. //== Typography
  33. //
  34. //## Font, line-height, and color for body text, headings, and more.
  35. $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
  36. $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
  37. //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
  38. $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
  39. $font-family-base: $font-family-sans-serif !default;
  40. $font-size-base: 14px !default;
  41. $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
  42. $font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
  43. $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
  44. $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
  45. $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
  46. $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
  47. $font-size-h5: $font-size-base !default;
  48. $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
  49. //** Unit-less `line-height` for use in components like buttons.
  50. $line-height-base: 1.428571429 !default; // 20/14
  51. //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
  52. $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
  53. //** By default, this inherits from the `<body>`.
  54. $headings-font-family: inherit !default;
  55. $headings-font-weight: 500 !default;
  56. $headings-line-height: 1.1 !default;
  57. $headings-color: inherit !default;
  58. //-- Iconography
  59. //
  60. //## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
  61. $icon-font-path: "bootstrap/" !default;
  62. $icon-font-name: "glyphicons-halflings-regular" !default;
  63. $icon-font-svg-id: "glyphicons_halflingsregular" !default;
  64. //== Components
  65. //
  66. //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
  67. $padding-base-vertical: 6px !default;
  68. $padding-base-horizontal: 12px !default;
  69. $padding-large-vertical: 10px !default;
  70. $padding-large-horizontal: 16px !default;
  71. $padding-small-vertical: 5px !default;
  72. $padding-small-horizontal: 10px !default;
  73. $padding-xs-vertical: 1px !default;
  74. $padding-xs-horizontal: 5px !default;
  75. $line-height-large: 1.33 !default;
  76. $line-height-small: 1.5 !default;
  77. $border-radius-base: 4px !default;
  78. $border-radius-large: 6px !default;
  79. $border-radius-small: 3px !default;
  80. //** Global color for active items (e.g., navs or dropdowns).
  81. $component-active-color: #fff !default;
  82. //** Global background color for active items (e.g., navs or dropdowns).
  83. $component-active-bg: $brand-primary !default;
  84. //** Width of the `border` for generating carets that indicator dropdowns.
  85. $caret-width-base: 4px !default;
  86. //** Carets increase slightly in size for larger components.
  87. $caret-width-large: 5px !default;
  88. //== Tables
  89. //
  90. //## Customizes the `.table` component with basic values, each used across all table variations.
  91. //** Padding for `<th>`s and `<td>`s.
  92. $table-cell-padding: 8px !default;
  93. //** Padding for cells in `.table-condensed`.
  94. $table-condensed-cell-padding: 5px !default;
  95. //** Default background color used for all tables.
  96. $table-bg: transparent !default;
  97. //** Background color used for `.table-striped`.
  98. $table-bg-accent: #f9f9f9 !default;
  99. //** Background color used for `.table-hover`.
  100. $table-bg-hover: #f5f5f5 !default;
  101. $table-bg-active: $table-bg-hover !default;
  102. //** Border color for table and cell borders.
  103. $table-border-color: #ddd !default;
  104. //== Buttons
  105. //
  106. //## For each of Bootstrap's buttons, define text, background and border color.
  107. $btn-font-weight: normal !default;
  108. $btn-default-color: #333 !default;
  109. $btn-default-bg: #fff !default;
  110. $btn-default-border: #ccc !default;
  111. $btn-primary-color: #fff !default;
  112. $btn-primary-bg: $brand-primary !default;
  113. $btn-primary-border: darken($btn-primary-bg, 5%) !default;
  114. $btn-success-color: #fff !default;
  115. $btn-success-bg: $brand-success !default;
  116. $btn-success-border: darken($btn-success-bg, 5%) !default;
  117. $btn-info-color: #fff !default;
  118. $btn-info-bg: $brand-info !default;
  119. $btn-info-border: darken($btn-info-bg, 5%) !default;
  120. $btn-warning-color: #fff !default;
  121. $btn-warning-bg: $brand-warning !default;
  122. $btn-warning-border: darken($btn-warning-bg, 5%) !default;
  123. $btn-danger-color: #fff !default;
  124. $btn-danger-bg: $brand-danger !default;
  125. $btn-danger-border: darken($btn-danger-bg, 5%) !default;
  126. $btn-link-disabled-color: $gray-light !default;
  127. //== Forms
  128. //
  129. //##
  130. //** `<input>` background color
  131. $input-bg: #fff !default;
  132. //** `<input disabled>` background color
  133. $input-bg-disabled: $gray-lighter !default;
  134. //** Text color for `<input>`s
  135. $input-color: $gray !default;
  136. //** `<input>` border color
  137. $input-border: #ccc !default;
  138. //** `<input>` border radius
  139. $input-border-radius: $border-radius-base !default;
  140. //** Border color for inputs on focus
  141. $input-border-focus: #66afe9 !default;
  142. //** Placeholder text color
  143. $input-color-placeholder: $gray-light !default;
  144. //** Default `.form-control` height
  145. $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
  146. //** Large `.form-control` height
  147. $input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
  148. //** Small `.form-control` height
  149. $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
  150. $legend-color: $gray-dark !default;
  151. $legend-border-color: #e5e5e5 !default;
  152. //** Background color for textual input addons
  153. $input-group-addon-bg: $gray-lighter !default;
  154. //** Border color for textual input addons
  155. $input-group-addon-border-color: $input-border !default;
  156. //== Dropdowns
  157. //
  158. //## Dropdown menu container and contents.
  159. //** Background for the dropdown menu.
  160. $dropdown-bg: #fff !default;
  161. //** Dropdown menu `border-color`.
  162. $dropdown-border: rgba(0,0,0,.15) !default;
  163. //** Dropdown menu `border-color` **for IE8**.
  164. $dropdown-fallback-border: #ccc !default;
  165. //** Divider color for between dropdown items.
  166. $dropdown-divider-bg: #e5e5e5 !default;
  167. //** Dropdown link text color.
  168. $dropdown-link-color: $gray-dark !default;
  169. //** Hover color for dropdown links.
  170. $dropdown-link-hover-color: darken($gray-dark, 5%) !default;
  171. //** Hover background for dropdown links.
  172. $dropdown-link-hover-bg: #f5f5f5 !default;
  173. //** Active dropdown menu item text color.
  174. $dropdown-link-active-color: $component-active-color !default;
  175. //** Active dropdown menu item background color.
  176. $dropdown-link-active-bg: $component-active-bg !default;
  177. //** Disabled dropdown menu item background color.
  178. $dropdown-link-disabled-color: $gray-light !default;
  179. //** Text color for headers within dropdown menus.
  180. $dropdown-header-color: $gray-light !default;
  181. // Note: Deprecated $dropdown-caret-color as of v3.1.0
  182. $dropdown-caret-color: #000 !default;
  183. //-- Z-index master list
  184. //
  185. // Warning: Avoid customizing these values. They're used for a bird's eye view
  186. // of components dependent on the z-axis and are designed to all work together.
  187. //
  188. // Note: These variables are not generated into the Customizer.
  189. $zindex-navbar: 1000 !default;
  190. $zindex-dropdown: 1000 !default;
  191. $zindex-popover: 1010 !default;
  192. $zindex-tooltip: 1030 !default;
  193. $zindex-navbar-fixed: 1030 !default;
  194. $zindex-modal-background: 1040 !default;
  195. $zindex-modal: 1050 !default;
  196. //== Media queries breakpoints
  197. //
  198. //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
  199. // Extra small screen / phone
  200. // Note: Deprecated $screen-xs and $screen-phone as of v3.0.1
  201. $screen-xs: 480px !default;
  202. $screen-xs-min: $screen-xs !default;
  203. $screen-phone: $screen-xs-min !default;
  204. // Small screen / tablet
  205. // Note: Deprecated $screen-sm and $screen-tablet as of v3.0.1
  206. $screen-sm: 768px !default;
  207. $screen-sm-min: $screen-sm !default;
  208. $screen-tablet: $screen-sm-min !default;
  209. // Medium screen / desktop
  210. // Note: Deprecated $screen-md and $screen-desktop as of v3.0.1
  211. $screen-md: 992px !default;
  212. $screen-md-min: $screen-md !default;
  213. $screen-desktop: $screen-md-min !default;
  214. // Large screen / wide desktop
  215. // Note: Deprecated $screen-lg and $screen-lg-desktop as of v3.0.1
  216. $screen-lg: 1200px !default;
  217. $screen-lg-min: $screen-lg !default;
  218. $screen-lg-desktop: $screen-lg-min !default;
  219. // So media queries don't overlap when required, provide a maximum
  220. $screen-xs-max: ($screen-sm-min - 1) !default;
  221. $screen-sm-max: ($screen-md-min - 1) !default;
  222. $screen-md-max: ($screen-lg-min - 1) !default;
  223. //== Grid system
  224. //
  225. //## Define your custom responsive grid.
  226. //** Number of columns in the grid.
  227. $grid-columns: 12 !default;
  228. //** Padding between columns. Gets divided in half for the left and right.
  229. $grid-gutter-width: 30px !default;
  230. // Navbar collapse
  231. //** Point at which the navbar becomes uncollapsed.
  232. $grid-float-breakpoint: $screen-sm-min !default;
  233. //** Point at which the navbar begins collapsing.
  234. $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
  235. //== Container sizes
  236. //
  237. //## Define the maximum width of `.container` for different screen sizes.
  238. // Small screen / tablet
  239. $container-tablet: ((720px + $grid-gutter-width)) !default;
  240. //** For `$screen-sm-min` and up.
  241. $container-sm: $container-tablet !default;
  242. // Medium screen / desktop
  243. $container-desktop: ((940px + $grid-gutter-width)) !default;
  244. //** For `$screen-md-min` and up.
  245. $container-md: $container-desktop !default;
  246. // Large screen / wide desktop
  247. $container-large-desktop: ((1140px + $grid-gutter-width)) !default;
  248. //** For `$screen-lg-min` and up.
  249. $container-lg: $container-large-desktop !default;
  250. //== Navbar
  251. //
  252. //##
  253. // Basics of a navbar
  254. $navbar-height: 50px !default;
  255. $navbar-margin-bottom: $line-height-computed !default;
  256. $navbar-border-radius: $border-radius-base !default;
  257. $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
  258. $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
  259. $navbar-collapse-max-height: 340px !default;
  260. $navbar-default-color: #777 !default;
  261. $navbar-default-bg: #f8f8f8 !default;
  262. $navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
  263. // Navbar links
  264. $navbar-default-link-color: #777 !default;
  265. $navbar-default-link-hover-color: #333 !default;
  266. $navbar-default-link-hover-bg: transparent !default;
  267. $navbar-default-link-active-color: #555 !default;
  268. $navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
  269. $navbar-default-link-disabled-color: #ccc !default;
  270. $navbar-default-link-disabled-bg: transparent !default;
  271. // Navbar brand label
  272. $navbar-default-brand-color: $navbar-default-link-color !default;
  273. $navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
  274. $navbar-default-brand-hover-bg: transparent !default;
  275. // Navbar toggle
  276. $navbar-default-toggle-hover-bg: #ddd !default;
  277. $navbar-default-toggle-icon-bar-bg: #888 !default;
  278. $navbar-default-toggle-border-color: #ddd !default;
  279. // Inverted navbar
  280. // Reset inverted navbar basics
  281. $navbar-inverse-color: $gray-light !default;
  282. $navbar-inverse-bg: #222 !default;
  283. $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
  284. // Inverted navbar links
  285. $navbar-inverse-link-color: $gray-light !default;
  286. $navbar-inverse-link-hover-color: #fff !default;
  287. $navbar-inverse-link-hover-bg: transparent !default;
  288. $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
  289. $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
  290. $navbar-inverse-link-disabled-color: #444 !default;
  291. $navbar-inverse-link-disabled-bg: transparent !default;
  292. // Inverted navbar brand label
  293. $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
  294. $navbar-inverse-brand-hover-color: #fff !default;
  295. $navbar-inverse-brand-hover-bg: transparent !default;
  296. // Inverted navbar toggle
  297. $navbar-inverse-toggle-hover-bg: #333 !default;
  298. $navbar-inverse-toggle-icon-bar-bg: #fff !default;
  299. $navbar-inverse-toggle-border-color: #333 !default;
  300. //== Navs
  301. //
  302. //##
  303. //=== Shared nav styles
  304. $nav-link-padding: 10px 15px !default;
  305. $nav-link-hover-bg: $gray-lighter !default;
  306. $nav-disabled-link-color: $gray-light !default;
  307. $nav-disabled-link-hover-color: $gray-light !default;
  308. $nav-open-link-hover-color: #fff !default;
  309. //== Tabs
  310. $nav-tabs-border-color: #ddd !default;
  311. $nav-tabs-link-hover-border-color: $gray-lighter !default;
  312. $nav-tabs-active-link-hover-bg: $body-bg !default;
  313. $nav-tabs-active-link-hover-color: $gray !default;
  314. $nav-tabs-active-link-hover-border-color: #ddd !default;
  315. $nav-tabs-justified-link-border-color: #ddd !default;
  316. $nav-tabs-justified-active-link-border-color: $body-bg !default;
  317. //== Pills
  318. $nav-pills-border-radius: $border-radius-base !default;
  319. $nav-pills-active-link-hover-bg: $component-active-bg !default;
  320. $nav-pills-active-link-hover-color: $component-active-color !default;
  321. //== Pagination
  322. //
  323. //##
  324. $pagination-color: $link-color !default;
  325. $pagination-bg: #fff !default;
  326. $pagination-border: #ddd !default;
  327. $pagination-hover-color: $link-hover-color !default;
  328. $pagination-hover-bg: $gray-lighter !default;
  329. $pagination-hover-border: #ddd !default;
  330. $pagination-active-color: #fff !default;
  331. $pagination-active-bg: $brand-primary !default;
  332. $pagination-active-border: $brand-primary !default;
  333. $pagination-disabled-color: $gray-light !default;
  334. $pagination-disabled-bg: #fff !default;
  335. $pagination-disabled-border: #ddd !default;
  336. //== Pager
  337. //
  338. //##
  339. $pager-bg: $pagination-bg !default;
  340. $pager-border: $pagination-border !default;
  341. $pager-border-radius: 15px !default;
  342. $pager-hover-bg: $pagination-hover-bg !default;
  343. $pager-active-bg: $pagination-active-bg !default;
  344. $pager-active-color: $pagination-active-color !default;
  345. $pager-disabled-color: $pagination-disabled-color !default;
  346. //== Jumbotron
  347. //
  348. //##
  349. $jumbotron-padding: 30px !default;
  350. $jumbotron-color: inherit !default;
  351. $jumbotron-bg: $gray-lighter !default;
  352. $jumbotron-heading-color: inherit !default;
  353. $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
  354. //== Form states and alerts
  355. //
  356. //## Define colors for form feedback states and, by default, alerts.
  357. $state-success-text: #3c763d !default;
  358. $state-success-bg: #dff0d8 !default;
  359. $state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
  360. $state-info-text: #31708f !default;
  361. $state-info-bg: #d9edf7 !default;
  362. $state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
  363. $state-warning-text: #8a6d3b !default;
  364. $state-warning-bg: #fcf8e3 !default;
  365. $state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
  366. $state-danger-text: #a94442 !default;
  367. $state-danger-bg: #f2dede !default;
  368. $state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
  369. //== Tooltips
  370. //
  371. //##
  372. //** Tooltip max width
  373. $tooltip-max-width: 200px !default;
  374. //** Tooltip text color
  375. $tooltip-color: #fff !default;
  376. //** Tooltip background color
  377. $tooltip-bg: #000 !default;
  378. $tooltip-opacity: .9 !default;
  379. //** Tooltip arrow width
  380. $tooltip-arrow-width: 5px !default;
  381. //** Tooltip arrow color
  382. $tooltip-arrow-color: $tooltip-bg !default;
  383. //== Popovers
  384. //
  385. //##
  386. //** Popover body background color
  387. $popover-bg: #fff !default;
  388. //** Popover maximum width
  389. $popover-max-width: 276px !default;
  390. //** Popover border color
  391. $popover-border-color: rgba(0,0,0,.2) !default;
  392. //** Popover fallback border color
  393. $popover-fallback-border-color: #ccc !default;
  394. //** Popover title background color
  395. $popover-title-bg: darken($popover-bg, 3%) !default;
  396. //** Popover arrow width
  397. $popover-arrow-width: 10px !default;
  398. //** Popover arrow color
  399. $popover-arrow-color: #fff !default;
  400. //** Popover outer arrow width
  401. $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
  402. //** Popover outer arrow color
  403. $popover-arrow-outer-color: fadein($popover-border-color, 5%) !default;
  404. //** Popover outer arrow fallback color
  405. $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
  406. //== Labels
  407. //
  408. //##
  409. //** Default label background color
  410. $label-default-bg: $gray-light !default;
  411. //** Primary label background color
  412. $label-primary-bg: $brand-primary !default;
  413. //** Success label background color
  414. $label-success-bg: $brand-success !default;
  415. //** Info label background color
  416. $label-info-bg: $brand-info !default;
  417. //** Warning label background color
  418. $label-warning-bg: $brand-warning !default;
  419. //** Danger label background color
  420. $label-danger-bg: $brand-danger !default;
  421. //** Default label text color
  422. $label-color: #fff !default;
  423. //** Default text color of a linked label
  424. $label-link-hover-color: #fff !default;
  425. //== Modals
  426. //
  427. //##
  428. //** Padding applied to the modal body
  429. $modal-inner-padding: 20px !default;
  430. //** Padding applied to the modal title
  431. $modal-title-padding: 15px !default;
  432. //** Modal title line-height
  433. $modal-title-line-height: $line-height-base !default;
  434. //** Background color of modal content area
  435. $modal-content-bg: #fff !default;
  436. //** Modal content border color
  437. $modal-content-border-color: rgba(0,0,0,.2) !default;
  438. //** Modal content border color **for IE8**
  439. $modal-content-fallback-border-color: #999 !default;
  440. //** Modal backdrop background color
  441. $modal-backdrop-bg: #000 !default;
  442. //** Modal backdrop opacity
  443. $modal-backdrop-opacity: .5 !default;
  444. //** Modal header border color
  445. $modal-header-border-color: #e5e5e5 !default;
  446. //** Modal footer border color
  447. $modal-footer-border-color: $modal-header-border-color !default;
  448. $modal-lg: 900px !default;
  449. $modal-md: 600px !default;
  450. $modal-sm: 300px !default;
  451. //== Alerts
  452. //
  453. //## Define alert colors, border radius, and padding.
  454. $alert-padding: 15px !default;
  455. $alert-border-radius: $border-radius-base !default;
  456. $alert-link-font-weight: bold !default;
  457. $alert-success-bg: $state-success-bg !default;
  458. $alert-success-text: $state-success-text !default;
  459. $alert-success-border: $state-success-border !default;
  460. $alert-info-bg: $state-info-bg !default;
  461. $alert-info-text: $state-info-text !default;
  462. $alert-info-border: $state-info-border !default;
  463. $alert-warning-bg: $state-warning-bg !default;
  464. $alert-warning-text: $state-warning-text !default;
  465. $alert-warning-border: $state-warning-border !default;
  466. $alert-danger-bg: $state-danger-bg !default;
  467. $alert-danger-text: $state-danger-text !default;
  468. $alert-danger-border: $state-danger-border !default;
  469. //== Progress bars
  470. //
  471. //##
  472. //** Background color of the whole progress component
  473. $progress-bg: #f5f5f5 !default;
  474. //** Progress bar text color
  475. $progress-bar-color: #fff !default;
  476. //** Default progress bar color
  477. $progress-bar-bg: $brand-primary !default;
  478. //** Success progress bar color
  479. $progress-bar-success-bg: $brand-success !default;
  480. //** Warning progress bar color
  481. $progress-bar-warning-bg: $brand-warning !default;
  482. //** Danger progress bar color
  483. $progress-bar-danger-bg: $brand-danger !default;
  484. //** Info progress bar color
  485. $progress-bar-info-bg: $brand-info !default;
  486. //== List group
  487. //
  488. //##
  489. //** Background color on `.list-group-item`
  490. $list-group-bg: #fff !default;
  491. //** `.list-group-item` border color
  492. $list-group-border: #ddd !default;
  493. //** List group border radius
  494. $list-group-border-radius: $border-radius-base !default;
  495. //** Background color of single list elements on hover
  496. $list-group-hover-bg: #f5f5f5 !default;
  497. //** Text color of active list elements
  498. $list-group-active-color: $component-active-color !default;
  499. //** Background color of active list elements
  500. $list-group-active-bg: $component-active-bg !default;
  501. //** Border color of active list elements
  502. $list-group-active-border: $list-group-active-bg !default;
  503. $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
  504. $list-group-link-color: #555 !default;
  505. $list-group-link-heading-color: #333 !default;
  506. //== Panels
  507. //
  508. //##
  509. $panel-bg: #fff !default;
  510. $panel-body-padding: 15px !default;
  511. $panel-border-radius: $border-radius-base !default;
  512. //** Border color for elements within panels
  513. $panel-inner-border: #ddd !default;
  514. $panel-footer-bg: #f5f5f5 !default;
  515. $panel-default-text: $gray-dark !default;
  516. $panel-default-border: #ddd !default;
  517. $panel-default-heading-bg: #f5f5f5 !default;
  518. $panel-primary-text: #fff !default;
  519. $panel-primary-border: $brand-primary !default;
  520. $panel-primary-heading-bg: $brand-primary !default;
  521. $panel-success-text: $state-success-text !default;
  522. $panel-success-border: $state-success-border !default;
  523. $panel-success-heading-bg: $state-success-bg !default;
  524. $panel-info-text: $state-info-text !default;
  525. $panel-info-border: $state-info-border !default;
  526. $panel-info-heading-bg: $state-info-bg !default;
  527. $panel-warning-text: $state-warning-text !default;
  528. $panel-warning-border: $state-warning-border !default;
  529. $panel-warning-heading-bg: $state-warning-bg !default;
  530. $panel-danger-text: $state-danger-text !default;
  531. $panel-danger-border: $state-danger-border !default;
  532. $panel-danger-heading-bg: $state-danger-bg !default;
  533. //== Thumbnails
  534. //
  535. //##
  536. //** Padding around the thumbnail image
  537. $thumbnail-padding: 4px !default;
  538. //** Thumbnail background color
  539. $thumbnail-bg: $body-bg !default;
  540. //** Thumbnail border color
  541. $thumbnail-border: #ddd !default;
  542. //** Thumbnail border radius
  543. $thumbnail-border-radius: $border-radius-base !default;
  544. //** Custom text color for thumbnail captions
  545. $thumbnail-caption-color: $text-color !default;
  546. //** Padding around the thumbnail caption
  547. $thumbnail-caption-padding: 9px !default;
  548. //== Wells
  549. //
  550. //##
  551. $well-bg: #f5f5f5 !default;
  552. $well-border: darken($well-bg, 7%) !default;
  553. //== Badges
  554. //
  555. //##
  556. $badge-color: #fff !default;
  557. //** Linked badge text color on hover
  558. $badge-link-hover-color: #fff !default;
  559. $badge-bg: $gray-light !default;
  560. //** Badge text color in active nav link
  561. $badge-active-color: $link-color !default;
  562. //** Badge background color in active nav link
  563. $badge-active-bg: #fff !default;
  564. $badge-font-weight: bold !default;
  565. $badge-line-height: 1 !default;
  566. $badge-border-radius: 10px !default;
  567. //== Breadcrumbs
  568. //
  569. //##
  570. $breadcrumb-padding-vertical: 8px !default;
  571. $breadcrumb-padding-horizontal: 15px !default;
  572. //** Breadcrumb background color
  573. $breadcrumb-bg: #f5f5f5 !default;
  574. //** Breadcrumb text color
  575. $breadcrumb-color: #ccc !default;
  576. //** Text color of current page in the breadcrumb
  577. $breadcrumb-active-color: $gray-light !default;
  578. //** Textual separator for between breadcrumb elements
  579. $breadcrumb-separator: "/" !default;
  580. //== Carousel
  581. //
  582. //##
  583. $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
  584. $carousel-control-color: #fff !default;
  585. $carousel-control-width: 15% !default;
  586. $carousel-control-opacity: .5 !default;
  587. $carousel-control-font-size: 20px !default;
  588. $carousel-indicator-active-bg: #fff !default;
  589. $carousel-indicator-border-color: #fff !default;
  590. $carousel-caption-color: #fff !default;
  591. //== Close
  592. //
  593. //##
  594. $close-font-weight: bold !default;
  595. $close-color: #000 !default;
  596. $close-text-shadow: 0 1px 0 #fff !default;
  597. //== Code
  598. //
  599. //##
  600. $code-color: #c7254e !default;
  601. $code-bg: #f9f2f4 !default;
  602. $kbd-color: #fff !default;
  603. $kbd-bg: #333 !default;
  604. $pre-bg: #f5f5f5 !default;
  605. $pre-color: $gray-dark !default;
  606. $pre-border-color: #ccc !default;
  607. $pre-scrollable-max-height: 340px !default;
  608. //== Type
  609. //
  610. //##
  611. //** Text muted color
  612. $text-muted: $gray-light !default;
  613. //** Abbreviations and acronyms border color
  614. $abbr-border-color: $gray-light !default;
  615. //** Headings small color
  616. $headings-small-color: $gray-light !default;
  617. //** Blockquote small color
  618. $blockquote-small-color: $gray-light !default;
  619. //** Blockquote font size
  620. $blockquote-font-size: ($font-size-base * 1.25) !default;
  621. //** Blockquote border color
  622. $blockquote-border-color: $gray-lighter !default;
  623. //** Page header border color
  624. $page-header-border-color: $gray-lighter !default;
  625. //== Miscellaneous
  626. //
  627. //##
  628. //** Horizontal line color.
  629. $hr-border: $gray-lighter !default;
  630. //** Horizontal offset for forms and lists.
  631. $component-offset-horizontal: 180px !default;