| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- // Variables
- //
- // Variables should follow the `$component-state-property-size` formula for
- // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
- // Color system
- $success: #4a9017 !default;
- $info: #4689aa !default;
- $warning: #c99818 !default;
- $danger: #de4d4d !default;
- $success-text-emphasis: mix($gray-900, $success, 30%) !default;
- $info-text-emphasis: mix($gray-900, $info, 30%) !default;
- $warning-text-emphasis: mix($gray-900, $warning, 30%) !default;
- $danger-text-emphasis: mix($gray-900, $danger, 30%) !default;
- $success-bg-subtle: mix(#fff, $success, 90%) !default;
- $info-bg-subtle: mix(#fff, $info, 90%) !default;
- $warning-bg-subtle: mix(#fff, $warning, 90%) !default;
- $danger-bg-subtle: mix(#fff, $danger, 90%) !default;
- $success-border-subtle: mix(#fff, $success, 70%) !default;
- $info-border-subtle: mix(#fff, $info, 70%) !default;
- $warning-border-subtle: mix(#fff, $warning, 70%) !default;
- $danger-border-subtle: mix(#fff, $danger, 70%) !default;
- // Options
- //
- // Quickly modify global styling by enabling or disabling optional features.
- $enable-shadows: true;
- $box-shadow-inset: inset 0 0 rgba(black, 0); // set invisible value for inset
- // Buttons
- //
- // For each of Bootstrap's buttons, define text, background, and border color.
- $btn-box-shadow: 0;
- $btn-active-box-shadow: 0;
- // Links
- //
- // Style anchor elements.
- $link-decoration: none;
- //== Typography
- //
- //## Font, line-height, and color for body text, headings, and more.
- $font-family-sans-serif: var(--font-family-sans-serif);
- $font-family-serif: var(--font-family-serif);
- $font-family-monospace: var(--font-family-monospace);
- $font-family-base: $font-family-sans-serif;
- //== Dropdowns
- $dropdown-header-padding-y: 0 !default;
- //== Modals
- $modal-footer-border-width: 0;
- //== Custom Checkbox
- $form-check-indicator-size: 1.2rem;
|