66// Color system
77
88// scss-docs-start gray-color-variables
9- $white : #fff !default ;
10- $gray-100 : #f8f9fa !default ;
11- $gray-200 : #e9ecef !default ;
12- $gray-300 : #dee2e6 !default ;
13- $gray-400 : #ced4da !default ;
14- $gray-500 : #adb5bd !default ;
15- $gray-600 : #6c757d !default ;
16- $gray-700 : #495057 !default ;
17- $gray-800 : #343a40 !default ;
18- $gray-900 : #212529 !default ;
19- $black : #000 !default ;
9+ $white : global . $white ;
10+ $gray-100 : global . $gray-100 ;
11+ $gray-200 : global . $gray-200 ;
12+ $gray-300 : global . $gray-300 ;
13+ $gray-400 : global . $gray-400 ;
14+ $gray-500 : global . $gray-500 ;
15+ $gray-600 : global . $gray-600 ;
16+ $gray-700 : global . $gray-700 ;
17+ $gray-800 : global . $gray-800 ;
18+ $gray-900 : global . $gray-900 ;
19+ $black : global . $black ;
2020// scss-docs-end gray-color-variables
2121
2222// fusv-disable
@@ -36,20 +36,20 @@ $grays: (
3636// fusv-enable
3737
3838// scss-docs-start color-variables
39- $blue : #0d6efd !default ;
39+ $blue : global . $blue !default ;
4040$indigo : #6610f2 !default ;
4141$purple : #6f42c1 !default ;
4242$pink : #d63384 !default ;
43- $red : #dc3545 !default ;
44- $orange : #fd7e14 !default ;
45- $yellow : #ffc107 !default ;
46- $green : #198754 !default ;
43+ $red : global . $red !default ;
44+ $orange : #f98012 !default ;
45+ $yellow : global . $yellow !default ;
46+ $green : global . $green !default ;
4747$teal : #20c997 !default ;
48- $cyan : #0dcaf0 !default ;
48+ $cyan : global . $cyan !default ;
4949// scss-docs-end color-variables
5050
5151// scss-docs-start colors-map
52- $colors : (
52+ $bs- colors : (
5353 " blue" : $blue ,
5454 " indigo" : $indigo ,
5555 " purple" : $purple ,
@@ -298,14 +298,14 @@ $cyans: (
298298// fusv-enable
299299
300300// scss-docs-start theme-color-variables
301- $primary : $blue !default ;
302- $secondary : $gray-600 !default ;
303- $success : $green !default ;
304- $info : $cyan !default ;
305- $warning : $yellow !default ;
306- $danger : $red !default ;
307- $light : $gray-100 !default ;
308- $dark : $gray-900 !default ;
301+ $primary : global . $primary ;
302+ $secondary : global . $secondary ;
303+ $success : global . $success ;
304+ $info : global . $cyan ;
305+ $warning : global . $warning ;
306+ $danger : global . $danger ;
307+ $light : global . $light ;
308+ $dark : global . $dark ;
309309// scss-docs-end theme-color-variables
310310
311311// scss-docs-start theme-colors-map
@@ -435,8 +435,8 @@ $position-values: (
435435// Settings for the `<body>` element.
436436
437437$body-text-align : null !default ;
438- $body-color : $gray-900 !default ;
439- $body-bg : $white !default ;
438+ $body-color : global . $text-color !default ;
439+ $body-bg : global . $background-color !default ;
440440
441441$body-secondary-color : rgba ($body-color , .75 ) !default ;
442442$body-secondary-bg : $gray-200 !default ;
@@ -450,7 +450,7 @@ $body-emphasis-color: $black !default;
450450//
451451// Style anchor elements.
452452
453- $link-color : $primary !default ;
453+ $link-color : $blue !default ;
454454$link-decoration : underline !default ;
455455$link-shade-percentage : 20% !default ;
456456$link-hover-color : shift-color ($link-color , $link-shade-percentage ) !default ;
@@ -603,10 +603,10 @@ $aspect-ratios: (
603603
604604// scss-docs-start font-variables
605605// stylelint-disable value-keyword-case
606- $font-family-sans-serif : system-ui , -apple-system , " Segoe UI " , Roboto, " Helvetica Neue " , " Noto Sans " , " Liberation Sans " , Arial , sans-serif , " Apple Color Emoji " , " Segoe UI Emoji " , " Segoe UI Symbol " , " Noto Color Emoji " !default ;
606+ $font-family-sans-serif : var ( --ion-font-family ) ;
607607$font-family-monospace : SFMono- Regular, Menlo, Monaco, Consolas, " Liberation Mono" , " Courier New" , monospace !default ;
608608// stylelint-enable value-keyword-case
609- $font-family-base : var (--#{$prefix} font-sans-serif ) !default ;
609+ $font-family-base : var (--ion- font-family ) !default ;
610610$font-family-code : var (--#{$prefix}font-monospace ) !default ;
611611
612612// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
0 commit comments