Skip to content

Commit 789aa99

Browse files
authored
Merge pull request #3112 from salesforce-ux/feat/branded-skip-links
feat(branded-header-skip-links): add support for skip links in the header
2 parents b47f231 + 9904e18 commit 789aa99

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

design-tokens/palette-colors.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,19 +95,19 @@ props:
9595
value: "#ffffff"
9696
comment: "Background color a branded app header"
9797
BRAND_HEADER_ICON:
98-
value: "#a6a6a6"
98+
value: "#919191"
9999
comment: "Icons of BRAND_HEADER that is accessible with BRAND_HEADER"
100100
BRAND_HEADER_ICON_ACTIVE:
101-
value: "#969696"
101+
value: "#818181"
102102
comment: "Active / Hover state of BRAND_HEADER_ICON"
103103
BRAND_HEADER_ICON_DISABLED:
104-
value: "rgba(166,166,166,0.25)"
104+
value: "rgba(145,145,145,0.25)"
105105
comment: "Disabled state of BRAND_HEADER_ICON"
106106
BRAND_HEADER_CONTRAST:
107-
value: "#6a6a6a"
107+
value: "#ff000"
108108
comment: "Variant of BRAND_HEADER that is accessible with BRAND_HEADER"
109109
BRAND_HEADER_CONTRAST_ACTIVE:
110-
value: "#5c5c5c"
110+
value: "#505050"
111111
comment: "Active / Hover state of BRAND_HEADER_CONTRAST"
112112
BRAND_HEADER_CONTRAST_INVERSE:
113113
value: "#ffffff"
@@ -119,13 +119,13 @@ props:
119119
value: "#0B6493"
120120
comment: "Variant of BRAND_HEADER_CONTRAST that provides a cool color"
121121
BRAND_HEADER_CONTRAST_COOL_ACTIVE:
122-
value: "#0A547B"
122+
value: "#005583"
123123
comment: "Active / Hover state of BRAND_HEADER_CONTRAST_COOL"
124124
BRAND_HEADER_CONTRAST_WARM:
125125
value: "#BF0201"
126126
comment: "Variant of BRAND_HEADER_CONTRAST that provides a warm color"
127127
BRAND_HEADER_CONTRAST_WARM_ACTIVE:
128-
value: "#920A0A"
128+
value: "#ac0000"
129129
comment: "Active / Hover state of BRAND_HEADER_CONTRAST_WARM"
130130
BRAND_TEXT_LINK:
131131
value: "#006DCC"

ui/components/global-header/base/_index.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
// Position for when assistive text becomes into focus
2121
.slds-assistive-text_focus,
2222
.slds-assistive-text--focus {
23-
background: $brand-header;
2423
top: 0;
24+
color: $brand-header-contrast;
25+
background: $brand-header;
2526
}
2627
}
2728

0 commit comments

Comments
 (0)