Skip to content
Snippets Groups Projects
Select Git revision
  • f28e9606d4d40c427bdeee38f4a121e4335c44d6
  • main default protected
  • renovate/django-5.x
  • koma/feature/preference-polling-form
4 results

bootstrap-4.3.1.min.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    _variables.scss 67.00 KiB
    // 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
    
    // scss-docs-start gray-color-variables
    $white:    #fff !default;
    $gray-100: #f8f9fa !default;
    $gray-200: #e9ecef !default;
    $gray-300: #dee2e6 !default;
    $gray-400: #ced4da !default;
    $gray-500: #adb5bd !default;
    $gray-600: #6c757d !default;
    $gray-700: #495057 !default;
    $gray-800: #343a40 !default;
    $gray-900: #212529 !default;
    $black:    #000 !default;
    // scss-docs-end gray-color-variables
    
    // fusv-disable
    // scss-docs-start gray-colors-map
    $grays: (
      "100": $gray-100,
      "200": $gray-200,
      "300": $gray-300,
      "400": $gray-400,
      "500": $gray-500,
      "600": $gray-600,
      "700": $gray-700,
      "800": $gray-800,
      "900": $gray-900
    ) !default;
    // scss-docs-end gray-colors-map
    // fusv-enable
    
    // scss-docs-start color-variables
    $blue:    #0d6efd !default;
    $indigo:  #6610f2 !default;
    $purple:  #6f42c1 !default;
    $pink:    #d63384 !default;
    $red:     #dc3545 !default;
    $orange:  #fd7e14 !default;
    $yellow:  #ffc107 !default;
    $green:   #198754 !default;
    $teal:    #20c997 !default;
    $cyan:    #0dcaf0 !default;
    // scss-docs-end color-variables
    
    // scss-docs-start colors-map
    $colors: (
      "blue":       $blue,
      "indigo":     $indigo,
      "purple":     $purple,
      "pink":       $pink,
      "red":        $red,
      "orange":     $orange,
      "yellow":     $yellow,
      "green":      $green,
      "teal":       $teal,
      "cyan":       $cyan,
      "black":      $black,
      "white":      $white,
      "gray":       $gray-600,
      "gray-dark":  $gray-800
    ) !default;
    // scss-docs-end colors-map
    
    // The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.