_override-bootstrap-variables.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. //
  2. // Variables
  3. // --------------------------------------------------
  4. //== Colors
  5. //
  6. $primary: $growi-blue !default;
  7. $secondary: #6c757d !default;
  8. $info: #009fbb !default;
  9. $success: #00bb83 !default;
  10. $warning: #ffa32b !default;
  11. $danger: #ff0a54 !default;
  12. $light: #e4e7ea !default;
  13. $dark: #343a40 !default;
  14. $gray-50: lighten($light, 7%) !default;
  15. $gray-100: lighten($light, 4%) !default;
  16. $gray-200: $light !default;
  17. $gray-300: darken($light, 5%) !default;
  18. $gray-400: darken($light, 20%) !default;
  19. $gray-500: darken($light, 30%) !default;
  20. $gray-600: lighten($dark, 10%) !default;
  21. $gray-700: lighten($dark, 5%) !default;
  22. $gray-800: $dark !default;
  23. $gray-900: darken($dark, 5%) !default;
  24. $grays: ("50": $gray-50) !default;
  25. $red: #ff0a54 !default;
  26. // Grid breakpoints
  27. //
  28. // Define the minimum dimensions at which your layout will change,
  29. // adapting to different screen sizes, for use in media queries.
  30. $grid-breakpoints: (
  31. xs: 0,
  32. sm: 576px,
  33. md: 768px,
  34. lg: 992px,
  35. xl: 1200px,
  36. 2xl: 1480px
  37. );
  38. // Grid containers
  39. //
  40. // Define the maximum width of `.container` for different screen sizes.
  41. $container-max-widths: (
  42. sm: 540px,
  43. md: 720px,
  44. lg: 960px,
  45. xl: 1140px,
  46. 2xl: 1320px
  47. );
  48. //== Typography
  49. //
  50. //## Font, line-height, and color for body text, headings, and more.
  51. $font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  52. $font-family-serif: Georgia, "Times New Roman", Times, serif;
  53. $font-family-monospace: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  54. $font-family-base: $font-family-sans-serif;
  55. $font-size-root: 14px;
  56. $line-height-base: 1.42857;
  57. $text-muted: $gray-500;
  58. $blockquote-small-color: $gray-500;
  59. //== Components
  60. //
  61. $border-radius: .15rem;
  62. $border-radius-sm: .1rem;
  63. $border-radius-lg: .25rem;
  64. $border-radius-xl: .35rem;
  65. // Buttons
  66. //
  67. // For each of Bootstrap's buttons, define text, background, and border color.
  68. $btn-link-disabled-color: $gray-500;
  69. //== Forms
  70. //
  71. $input-border-color: $gray-300;
  72. $input-border-radius: $border-radius-sm;
  73. $input-border-radius-sm: $border-radius-sm;
  74. $input-border-radius-lg: $border-radius;
  75. $input-placeholder-color: $gray-500;
  76. $custom-control-indicator-border-color: $gray-400;
  77. $custom-control-label-disabled-color: $gray-500;
  78. $custom-select-disabled-color: $gray-500;
  79. $custom-range-thumb-disabled-bg: $gray-400;
  80. //== Navs
  81. $nav-link-padding-y: 0.75rem;
  82. $nav-link-padding-x: 1rem;
  83. $nav-link-disabled-color: $gray-500;
  84. //== Navbar
  85. $navbar-padding-y: 0;
  86. $navbar-brand-padding-y: 0;
  87. $navbar-nav-link-padding-x: 1rem;
  88. //== Dropdowns
  89. $dropdown-border-radius: $border-radius-sm;
  90. $dropdown-link-disabled-color: $gray-500;
  91. $dropdown-header-color: $gray-500;
  92. //== Pagination
  93. $pagination-disabled-color: $gray-500;
  94. //== Cards
  95. $card-spacer-y: 7px;
  96. $card-spacer-x: 15px;
  97. //== Toasts
  98. $toast-header-color: $gray-500;
  99. //== Modals
  100. $modal-content-border-width: 0;
  101. $modal-header-padding-y: 0.75rem;
  102. $modal-header-padding-x: 1rem;
  103. //== Alerts
  104. $alert-bg-level: -2;
  105. $alert-border-level: 0;
  106. $alert-color-level: -10;
  107. //== Progress bar
  108. $progress-height: 4px;
  109. $progress-border-radius: $border-radius-sm;
  110. $progress-bg: $gray-100;
  111. $progress-box-shadow: none;
  112. //== List group
  113. $list-group-disabled-color: $gray-500;
  114. //== Figures
  115. $figure-caption-color: $gray-500;
  116. //== Breadcrumbs
  117. $breadcrumb-divider-color: $gray-500;
  118. $breadcrumb-active-color: $gray-500;
  119. //== Code
  120. $pre-color: dummyinvalildcolor; // disable pre color specification with invalid value
  121. //== Custom Checkbox
  122. $custom-checkbox-indicator-border-radius: 0px;
  123. $custom-control-indicator-focus-box-shadow: none;
  124. $custom-control-indicator-size: 1.2rem;