File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed
Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 9393 -- #{$prefix } tertiary- color- rgb- dark: #{to-rgb ($body-tertiary-color-dark )} ;
9494 -- #{$prefix } tertiary- bg- dark: #{$body-tertiary-bg-dark } ;
9595 -- #{$prefix } tertiary- bg- rgb- dark: #{to-rgb ($body-tertiary-bg-dark )} ;
96+
97+ -- #{$prefix } high- emphasis: #{$high-emphasis } ; // Deprecated in v5.0.0
98+ -- #{$prefix } medium- emphasis: #{$medium-emphasis } ; // Deprecated in v5.0.0
99+ -- #{$prefix } disabled : #{$disabled } ; // Deprecated in v5.0.0
100+
101+ -- #{$prefix } high- emphasis- inverse: #{$high-emphasis-inverse } ; // Deprecated in v5.0.0
102+ -- #{$prefix } medium- emphasis- inverse: #{$medium-emphasis-inverse } ; // Deprecated in v5.0.0
103+ -- #{$prefix } disabled- inverse: #{$disabled-inverse } ; // Deprecated in v5.0.0
96104 // scss-docs-end root-body-variables
97105
98106 -- #{$prefix } heading- color: #{$headings-color } ;
170178 -- #{$prefix } tertiary-bg : #{$body-tertiary-bg-dark } ;
171179 -- #{$prefix } tertiary-bg-rgb : #{to-rgb ($body-tertiary-bg-dark )} ;
172180
181+ -- #{$prefix } high-emphasis : #{$high-emphasis-dark } ; // Deprecated in v5.0.0
182+ -- #{$prefix } medium-emphasis : #{$medium-emphasis-dark } ; // Deprecated in v5.0.0
183+ -- #{$prefix } disabled : #{$disabled-dark } ; // Deprecated in v5.0.0
184+
173185 @each $color , $value in $theme-colors-dark {
174186 -- #{$prefix }#{$color } : #{$value } ;
175187 }
Original file line number Diff line number Diff line change @@ -35,6 +35,12 @@ $grays-dark: (
3535// scss-docs-end gray-colors-dark-map
3636// fusv-enable
3737
38+ // fusv-disable
39+ $high-emphasis-dark : rgba ($white , .87 ) !default ; // Deprecated in v5.0.0
40+ $medium-emphasis-dark : rgba ($white , .6 ) !default ; // Deprecated in v5.0.0
41+ $disabled-dark : rgba ($white , .38 ) !default ; // Deprecated in v5.0.0
42+ // fusv-enable
43+
3844// scss-docs-start theme-color-dark-variables
3945$primary-dark : desaturate ($primary , 10% ) !default ;
4046$secondary-dark : desaturate ($secondary , 10% ) !default ;
Original file line number Diff line number Diff line change @@ -36,6 +36,16 @@ $grays: (
3636// scss-docs-end gray-colors-map
3737// fusv-enable
3838
39+ // fusv-disable
40+ $high-emphasis : rgba (shift-color ($gray-base , +26% ), .95 ) !default ; // Deprecated in 5.0.0
41+ $medium-emphasis : rgba (shift-color ($gray-base , +26% ), .681 ) !default ; // Deprecated in 5.0.0
42+ $disabled : rgba (shift-color ($gray-base , +26% ), .38 ) !default ; // Deprecated in 5.0.0
43+
44+ $high-emphasis-inverse : rgba ($white , .87 ) !default ; // Deprecated in 5.0.0
45+ $medium-emphasis-inverse : rgba ($white , .6 ) !default ; // Deprecated in 5.0.0
46+ $disabled-inverse : rgba ($white , .38 ) !default ; // Deprecated in 5.0.0
47+ // fusv-enable
48+
3949// scss-docs-start color-variables
4050$blue : #0d6efd !default ;
4151$indigo : #6610f2 !default ;
You can’t perform that action at this time.
0 commit comments