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 93
93
-- #{$prefix } tertiary- color- rgb- dark: #{to-rgb ($body-tertiary-color-dark )} ;
94
94
-- #{$prefix } tertiary- bg- dark: #{$body-tertiary-bg-dark } ;
95
95
-- #{$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
96
104
// scss-docs-end root-body-variables
97
105
98
106
-- #{$prefix } heading- color: #{$headings-color } ;
170
178
-- #{$prefix } tertiary-bg : #{$body-tertiary-bg-dark } ;
171
179
-- #{$prefix } tertiary-bg-rgb : #{to-rgb ($body-tertiary-bg-dark )} ;
172
180
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
+
173
185
@each $color , $value in $theme-colors-dark {
174
186
-- #{$prefix }#{$color } : #{$value } ;
175
187
}
Original file line number Diff line number Diff line change @@ -35,6 +35,12 @@ $grays-dark: (
35
35
// scss-docs-end gray-colors-dark-map
36
36
// fusv-enable
37
37
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
+
38
44
// scss-docs-start theme-color-dark-variables
39
45
$primary-dark : desaturate ($primary , 10% ) !default ;
40
46
$secondary-dark : desaturate ($secondary , 10% ) !default ;
Original file line number Diff line number Diff line change @@ -36,6 +36,16 @@ $grays: (
36
36
// scss-docs-end gray-colors-map
37
37
// fusv-enable
38
38
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
+
39
49
// scss-docs-start color-variables
40
50
$blue : #0d6efd !default ;
41
51
$indigo : #6610f2 !default ;
You can’t perform that action at this time.
0 commit comments