1010// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
1111
1212// scss-docs-start theme-color-variables
13- $primary : $purple -500 !default ;
13+ $primary : $blue -500 !default ;
1414$secondary : $gray-600 !default ;
1515$success : $green-500 !default ;
1616$info : $cyan-500 !default ;
@@ -167,6 +167,7 @@ $body-emphasis-color: $black !default;
167167
168168$link-color : $primary !default ;
169169$link-decoration : underline !default ;
170+ $link-underline-offset : .2em !default ;
170171$link-shade-percentage : 20% !default ;
171172$link-hover-color : shift-color ($link-color , $link-shade-percentage ) !default ;
172173$link-hover-decoration : null !default ;
@@ -204,7 +205,7 @@ $border-widths: (
204205 5 : 5px
205206) !default ;
206207$border-style : solid !default ;
207- $border-color : $gray-300 !default ;
208+ $border-color : color . mix ( $gray-300 , $gray-400 ) !default ;
208209$border-color-translucent : rgba ($black , .175 ) !default ;
209210// scss-docs-end border-variables
210211
@@ -266,8 +267,8 @@ $font-family-code: var(--#{$prefix}font-monospace) !default;
266267
267268// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
268269// $font-size-base affects the font size of the body text
269- $font-size-root : null !default ;
270- $font-size-base : 1 rem !default ; // Assumes the browser default, typically `16px`
270+ $font-size-root : 16 px !default ;
271+ $font-size-base : 14 px !default ; // Assumes the browser default, typically `16px`
271272$font-size-sm : $font-size-base * .875 !default ;
272273$font-size-lg : $font-size-base * 1.25 !default ;
273274
@@ -546,8 +547,8 @@ $offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;
546547
547548// Code
548549
549- $code-font-size : $small-font-size !default ;
550- $code-color : $pink !default ;
550+ $code-font-size : 95 % !default ;
551+ $code-color : var ( --#{$prefix}secondary-text ) !default ;
551552
552553$kbd-padding-y : .1875rem !default ;
553554$kbd-padding-x : .375rem !default ;
@@ -578,7 +579,7 @@ $border-color-translucent-dark: rgba($white, .15) !default;
578579$headings-color-dark : inherit !default ;
579580$link-color-dark : tint-color ($primary , 40% ) !default ;
580581$link-hover-color-dark : shift-color ($link-color-dark , - $link-shade-percentage ) !default ;
581- $code-color-dark : tint-color ($code-color , 40% ) !default ;
582+ // $code-color-dark: tint-color($code-color, 40%) !default;
582583$mark-color-dark : $body-color-dark !default ;
583584$mark-bg-dark : $yellow-800 !default ;
584585
@@ -587,12 +588,6 @@ $mark-bg-dark: $yellow-800 !default;
587588// Forms
588589//
589590
590- $form-select-indicator-color-dark : $body-color-dark !default ;
591- $form-select-indicator-dark : url (" data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color-dark } ' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>" ) !default ;
592-
593- $form-switch-color-dark : rgba ($white , .25 ) !default ;
594- $form-switch-bg-image-dark : url (" data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color-dark } '/></svg>" ) !default ;
595-
596591// scss-docs-start form-validation-colors-dark
597592$form-valid-color-dark : $green-300 !default ;
598593$form-valid-border-color-dark : $green-300 !default ;
0 commit comments