| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- //
- // Variables
- // --------------------------------------------------
- //== Colors
- //
- $primary: $growi-blue !default;
- $secondary: #6c757d !default;
- $info: #009fbb !default;
- $success: #00bb83 !default;
- $warning: #ffa32b !default;
- $danger: #ff0a54 !default;
- $light: #e4e7ea !default;
- $dark: #343a40 !default;
- $gray-50: lighten($light, 7%) !default;
- $gray-100: lighten($light, 4%) !default;
- $gray-200: $light !default;
- $gray-300: darken($light, 5%) !default;
- $gray-400: darken($light, 20%) !default;
- $gray-500: darken($light, 30%) !default;
- $gray-600: lighten($dark, 10%) !default;
- $gray-700: lighten($dark, 5%) !default;
- $gray-800: $dark !default;
- $gray-900: darken($dark, 5%) !default;
- $grays: ("50": $gray-50) !default;
- $red: #ff0a54 !default;
- //== Typography
- //
- //## Font, line-height, and color for body text, headings, and more.
- $font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
- $font-family-serif: Georgia, "Times New Roman", Times, serif;
- $font-family-monospace: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
- $font-family-base: $font-family-sans-serif;
- $font-size-root: 14px;
- $line-height-base: 1.42857;
- $text-muted: $gray-500;
- $blockquote-small-color: $gray-500;
- //== Components
- //
- $border-radius: .15rem;
- $border-radius-sm: .1rem;
- $border-radius-lg: .25rem;
- $border-radius-xl: .35rem;
- // Buttons
- //
- // For each of Bootstrap's buttons, define text, background, and border color.
- $btn-link-disabled-color: $gray-500;
- //== Forms
- //
- $input-border-color: $gray-300;
- $input-border-radius: $border-radius-sm;
- $input-border-radius-sm: $border-radius-sm;
- $input-border-radius-lg: $border-radius;
- $input-placeholder-color: $gray-500;
- $custom-control-indicator-border-color: $gray-400;
- $custom-control-label-disabled-color: $gray-500;
- $custom-select-disabled-color: $gray-500;
- $custom-range-thumb-disabled-bg: $gray-400;
- //== Navs
- $nav-link-padding-y: 0.75rem;
- $nav-link-padding-x: 1rem;
- $nav-link-disabled-color: $gray-500;
- //== Navbar
- $navbar-padding-y: 0;
- $navbar-brand-padding-y: 0;
- $navbar-nav-link-padding-x: 1rem;
- //== Dropdowns
- $dropdown-border-radius: $border-radius-sm;
- $dropdown-link-disabled-color: $gray-500;
- $dropdown-header-color: $gray-500;
- //== Pagination
- $pagination-disabled-color: $gray-500;
- //== Cards
- $card-spacer-y: 7px;
- $card-spacer-x: 15px;
- //== Toasts
- $toast-header-color: $gray-500;
- //== Modals
- $modal-content-border-width: 0;
- $modal-header-padding-y: 0.75rem;
- $modal-header-padding-x: 1rem;
- //== Alerts
- $alert-bg-level: -2;
- $alert-border-level: 0;
- $alert-color-level: -10;
- //== Progress bar
- $progress-height: 4px;
- $progress-border-radius: $border-radius-sm;
- $progress-bg: $gray-100;
- $progress-box-shadow: none;
- //== List group
- $list-group-disabled-color: $gray-500;
- //== Figures
- $figure-caption-color: $gray-500;
- //== Breadcrumbs
- $breadcrumb-divider-color: $gray-500;
- $breadcrumb-active-color: $gray-500;
- //== Code
- $pre-color: dummyinvalildcolor; // disable pre color specification with invalid value
- //== Custom Checkbox
- $custom-checkbox-indicator-border-radius: 0px;
- $custom-control-indicator-focus-box-shadow: none;
- $custom-control-indicator-size: 1.2rem;
|