Skip to content

Commit a09dc7d

Browse files
committed
Text Area Semantic Tokens Update
1 parent e094dc3 commit a09dc7d

File tree

11 files changed

+145
-58
lines changed

11 files changed

+145
-58
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "patch",
3+
"comment": "Fix: TextArea changes",
4+
"packageName": "@fluentui/react-textarea",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}

packages/react-components/react-button/library/src/components/CompoundButton/useCompoundButtonStyles.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const useRootStyles = makeStyles({
1818
height: 'auto',
1919

2020
[`& .${compoundButtonClassNames.secondaryContent}`]: {
21-
color: semanticTokens.foregroundCtrlNeutralSecondaryRest,
21+
color: semanticTokens._foregroundCtrlNeutralSecondaryRest2,
2222
},
2323

2424
':hover': {

packages/react-components/react-textarea/library/src/components/Textarea/useTextareaStyles.styles.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const useRootStyles = makeStyles({
5656
// By default borderBottom will cause little "horns" on the ends. The clipPath trims them off.
5757
// (This could be done without trimming using `background: linear-gradient(...)`, but using
5858
// borderBottom makes it easier for people to override the color if needed.)
59-
borderBottom: `${semanticTokens._cornerCtrlRestTextAreaThick} solid ${semanticTokens.ctrlInputBottomLineStrokeRest}`,
59+
borderBottom: `${semanticTokens._cornerCtrlRestTextAreaThick} solid ${semanticTokens.ctrlInputBottomLineStrokePressed}`,
6060
clipPath: `inset(calc(100% - ${semanticTokens._cornerCtrlRestTextAreaThick}) 0 0 0)`,
6161

6262
// Animation for focus OUT
@@ -119,8 +119,8 @@ const useRootStyles = makeStyles({
119119
outline: {
120120
backgroundColor: semanticTokens._ctrlInputBackgroundRestLighter,
121121
border: `${semanticTokens.strokeWidthDefault} solid ${semanticTokens.ctrlInputStrokeRest}`,
122-
borderBottomColor: semanticTokens.ctrlInputBottomLineStrokeSelected,
123-
},
122+
borderBottomColor: semanticTokens.ctrlInputBottomLineStrokeRest,
123+
},
124124
outlineInteractive: {
125125
':hover': {
126126
border: `${semanticTokens.strokeWidthDefault} solid ${semanticTokens.ctrlInputStrokeHover}`,
@@ -129,12 +129,12 @@ const useRootStyles = makeStyles({
129129

130130
':active': {
131131
border: `${semanticTokens.strokeWidthDefault} solid ${semanticTokens.ctrlInputStrokePressed}`,
132-
borderBottomColor: tokens.colorNeutralStrokeAccessiblePressed, // TODO
133-
},
132+
borderBottomColor: semanticTokens.ctrlInputBottomLineStrokeSelected,
133+
},
134134

135135
':focus-within': {
136136
border: `${semanticTokens.strokeWidthDefault} solid ${semanticTokens.ctrlInputStrokePressed}`,
137-
borderBottomColor: semanticTokens.ctrlInputBottomLineStrokeSelected,
137+
borderBottomColor: semanticTokens.ctrlInputBottomLineStrokePressed,
138138
},
139139
},
140140

@@ -160,13 +160,13 @@ const useTextareaStyles = makeStyles({
160160
height: '100%',
161161

162162
'::placeholder': {
163-
color: tokens.colorNeutralForeground4, // TODO
163+
color: semanticTokens._foregroundCtrlNeutralSecondaryRest4,
164164
opacity: 1,
165165
},
166166

167167
'::selection': {
168168
color: tokens.colorNeutralForegroundInverted,
169-
backgroundColor: tokens.colorNeutralBackgroundInverted, // TODO
169+
backgroundColor: tokens.colorNeutralBackgroundInverted,
170170
},
171171

172172
outlineStyle: 'none', // disable default browser outline
@@ -184,19 +184,19 @@ const useTextareaStyles = makeStyles({
184184
// affected by changing the padding of the root.
185185
small: {
186186
minHeight: '40px',
187-
padding: `${tokens.spacingVerticalXS} calc(${tokens.spacingHorizontalSNudge} + ${tokens.spacingHorizontalXXS})`, // TODO
187+
padding: `${tokens.spacingVerticalXS} calc(${tokens.spacingHorizontalSNudge} + ${tokens.spacingHorizontalXXS})`,
188188
maxHeight: '200px',
189189
...typographyStyles.caption1,
190190
},
191191
medium: {
192192
minHeight: '52px',
193-
padding: `${tokens.spacingVerticalSNudge} calc(${tokens.spacingHorizontalMNudge} + ${tokens.spacingHorizontalXXS})`, // TODO
193+
padding: `${tokens.spacingVerticalSNudge} calc(${tokens.spacingHorizontalMNudge} + ${tokens.spacingHorizontalXXS})`,
194194
maxHeight: '260px',
195195
...typographyStyles.body1,
196196
},
197197
large: {
198198
minHeight: '64px',
199-
padding: `${tokens.spacingVerticalS} calc(${tokens.spacingHorizontalM} + ${tokens.spacingHorizontalXXS})`, // TODO
199+
padding: `${tokens.spacingVerticalS} calc(${tokens.spacingHorizontalM} + ${tokens.spacingHorizontalXXS})`,
200200
maxHeight: '320px',
201201
...typographyStyles.body2,
202202
},

packages/semantic-tokens/etc/semantic-tokens.api.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,25 +1658,25 @@ export const ctrlInputBottomLineStrokeError = "var(--smtc-ctrl-input-bottom-line
16581658
export const ctrlInputBottomLineStrokeErrorRaw = "--smtc-ctrl-input-bottom-line-stroke-error";
16591659

16601660
// @public (undocumented)
1661-
export const ctrlInputBottomLineStrokeHover = "var(--smtc-ctrl-input-bottom-line-stroke-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest))";
1661+
export const ctrlInputBottomLineStrokeHover = "var(--smtc-ctrl-input-bottom-line-stroke-hover, var(--smtc-foreground-ctrl-neutral-secondary-rest, var(--colorNeutralStrokeAccessibleHover)))";
16621662

16631663
// @public (undocumented)
16641664
export const ctrlInputBottomLineStrokeHoverRaw = "--smtc-ctrl-input-bottom-line-stroke-hover";
16651665

16661666
// @public (undocumented)
1667-
export const ctrlInputBottomLineStrokePressed = "var(--smtc-ctrl-input-bottom-line-stroke-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest, var(--colorCompoundBrandStrokePressed)))";
1667+
export const ctrlInputBottomLineStrokePressed = "var(--smtc-ctrl-input-bottom-line-stroke-pressed, var(--smtc-foreground-ctrl-neutral-secondary-rest, var(--colorCompoundBrandStroke)))";
16681668

16691669
// @public (undocumented)
16701670
export const ctrlInputBottomLineStrokePressedRaw = "--smtc-ctrl-input-bottom-line-stroke-pressed";
16711671

16721672
// @public (undocumented)
1673-
export const ctrlInputBottomLineStrokeRest = "var(--smtc-ctrl-input-bottom-line-stroke-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest, var(--colorCompoundBrandStroke)))";
1673+
export const ctrlInputBottomLineStrokeRest = "var(--smtc-ctrl-input-bottom-line-stroke-rest, var(--smtc-foreground-ctrl-neutral-secondary-rest, var(--colorNeutralStrokeAccessible)))";
16741674

16751675
// @public (undocumented)
16761676
export const ctrlInputBottomLineStrokeRestRaw = "--smtc-ctrl-input-bottom-line-stroke-rest";
16771677

16781678
// @public (undocumented)
1679-
export const ctrlInputBottomLineStrokeSelected = "var(--smtc-ctrl-input-bottom-line-stroke-selected, var(--smtc-background-ctrl-brand-rest))";
1679+
export const ctrlInputBottomLineStrokeSelected = "var(--smtc-ctrl-input-bottom-line-stroke-selected, var(--smtc-background-ctrl-brand-rest, var(--colorNeutralStrokeAccessiblePressed)))";
16801680

16811681
// @public (undocumented)
16821682
export const ctrlInputBottomLineStrokeSelectedRaw = "--smtc-ctrl-input-bottom-line-stroke-selected";
@@ -1718,7 +1718,7 @@ export const ctrlInputStrokeError = "var(--smtc-ctrl-input-stroke-error, var(--s
17181718
export const ctrlInputStrokeErrorRaw = "--smtc-ctrl-input-stroke-error";
17191719

17201720
// @public (undocumented)
1721-
export const ctrlInputStrokeHover = "var(--smtc-ctrl-input-stroke-hover, var(--smtc-stroke-ctrl-on-outline-hover))";
1721+
export const ctrlInputStrokeHover = "var(--smtc-ctrl-input-stroke-hover, var(--smtc-stroke-ctrl-on-outline-hover, var(--colorNeutralStroke1Hover)))";
17221722

17231723
// @public (undocumented)
17241724
export const ctrlInputStrokeHoverRaw = "--smtc-ctrl-input-stroke-hover";
@@ -1730,7 +1730,7 @@ export const ctrlInputStrokePressed = "var(--smtc-ctrl-input-stroke-pressed, var
17301730
export const ctrlInputStrokePressedRaw = "--smtc-ctrl-input-stroke-pressed";
17311731

17321732
// @public (undocumented)
1733-
export const ctrlInputStrokeRest = "var(--smtc-ctrl-input-stroke-rest, var(--smtc-stroke-ctrl-on-outline-rest))";
1733+
export const ctrlInputStrokeRest = "var(--smtc-ctrl-input-stroke-rest, var(--smtc-stroke-ctrl-on-outline-rest, var(--colorNeutralStroke1)))";
17341734

17351735
// @public (undocumented)
17361736
export const ctrlInputStrokeRestRaw = "--smtc-ctrl-input-stroke-rest";
@@ -2966,7 +2966,13 @@ export const foregroundCtrlNeutralSecondaryPressed = "var(--smtc-foreground-ctrl
29662966
export const foregroundCtrlNeutralSecondaryPressedRaw = "--smtc-foreground-ctrl-neutral-secondary-pressed";
29672967

29682968
// @public (undocumented)
2969-
export const foregroundCtrlNeutralSecondaryRest = "var(--smtc-foreground-ctrl-neutral-secondary-rest, var(--colorNeutralForeground2))";
2969+
export const foregroundCtrlNeutralSecondaryRest = "var(--smtc-foreground-ctrl-neutral-secondary-rest)";
2970+
2971+
// @public
2972+
export const _foregroundCtrlNeutralSecondaryRest2 = "var(--smtc-foreground-ctrl-neutral-secondary-rest, var(--colorNeutralForeground2))";
2973+
2974+
// @public
2975+
export const _foregroundCtrlNeutralSecondaryRest4 = "var(--smtc-foreground-ctrl-neutral-secondary-rest, var(--colorNeutralForeground4))";
29702976

29712977
// @public (undocumented)
29722978
export const foregroundCtrlNeutralSecondaryRestRaw = "--smtc-foreground-ctrl-neutral-secondary-rest";

packages/semantic-tokens/src/components/input/tokens.ts

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ import {
1515
} from '../../control/variables';
1616
import {
1717
colorPaletteRedBorder2,
18+
colorNeutralStroke1,
19+
colorNeutralStrokeAccessible,
20+
colorNeutralStrokeAccessibleHover,
1821
colorCompoundBrandStroke,
19-
colorCompoundBrandStrokePressed,
22+
colorNeutralStrokeAccessiblePressed,
23+
colorNeutralStroke1Hover,
2024
colorNeutralStroke1Pressed,
2125
} from '../../legacy/tokens';
2226
import { statusDangerStrokeRaw } from '../../optional/variables';
@@ -57,7 +61,7 @@ export const ctrlInputBackgroundPressed = `var(${ctrlInputBackgroundPressedRaw},
5761
export const ctrlInputBackgroundDisabled = `var(${ctrlInputBackgroundDisabledRaw}, var(${backgroundCtrlNeutralDisabledRaw}))`;
5862
export const ctrlInputBackgroundSelected = `var(${ctrlInputBackgroundSelectedRaw}, var(${backgroundCtrlNeutralRestRaw}))`;
5963
export const ctrlInputBackgroundError = `var(${ctrlInputBackgroundErrorRaw}, var(${backgroundCtrlNeutralRestRaw}, ${colorPaletteRedBorder2}))`;
60-
export const ctrlInputStrokeRest = `var(${ctrlInputStrokeRestRaw}, var(${strokeCtrlOnOutlineRestRaw}))`;
64+
export const ctrlInputStrokeRest = `var(${ctrlInputStrokeRestRaw}, var(${strokeCtrlOnOutlineRestRaw}, ${colorNeutralStroke1}))`;
6165
export const ctrlInputStrokeWidthRest = `var(${ctrlInputStrokeWidthRestRaw}, var(${strokeWidthDefaultRaw}))`;
6266
export const ctrlInputStrokeWidthHover = `var(${ctrlInputStrokeWidthHoverRaw}, var(${strokeWidthDefaultRaw}))`;
6367
export const ctrlInputStrokeWidthPressed = `var(${ctrlInputStrokeWidthPressedRaw}, var(${strokeWidthDefaultRaw}))`;
@@ -68,13 +72,13 @@ export const ctrlInputTextSelectionForeground = `var(${ctrlInputTextSelectionFor
6872
export const ctrlInputBottomLineStrokeWidthHover = `var(${ctrlInputBottomLineStrokeWidthHoverRaw}, var(${strokeWidthDefaultRaw}))`;
6973
export const ctrlInputBottomLineStrokeWidthPressed = `var(${ctrlInputBottomLineStrokeWidthPressedRaw}, var(${ctrlInputBottomLineStrokeWidthSelectedRaw}))`;
7074
export const ctrlInputBottomLineStrokeWidthSelected = `var(${ctrlInputBottomLineStrokeWidthSelectedRaw})`;
71-
export const ctrlInputBottomLineStrokeRest = `var(${ctrlInputBottomLineStrokeRestRaw}, var(${foregroundCtrlNeutralSecondaryRestRaw}, ${colorCompoundBrandStroke}))`;
72-
export const ctrlInputBottomLineStrokeHover = `var(${ctrlInputBottomLineStrokeHoverRaw}, var(${foregroundCtrlNeutralSecondaryRestRaw}))`;
73-
export const ctrlInputBottomLineStrokePressed = `var(${ctrlInputBottomLineStrokePressedRaw}, var(${foregroundCtrlNeutralSecondaryRestRaw}, ${colorCompoundBrandStrokePressed}))`;
75+
export const ctrlInputBottomLineStrokeRest = `var(${ctrlInputBottomLineStrokeRestRaw}, var(${foregroundCtrlNeutralSecondaryRestRaw}, ${colorNeutralStrokeAccessible}))`;
76+
export const ctrlInputBottomLineStrokeHover = `var(${ctrlInputBottomLineStrokeHoverRaw}, var(${foregroundCtrlNeutralSecondaryRestRaw}, ${colorNeutralStrokeAccessibleHover}))`;
77+
export const ctrlInputBottomLineStrokePressed = `var(${ctrlInputBottomLineStrokePressedRaw}, var(${foregroundCtrlNeutralSecondaryRestRaw}, ${colorCompoundBrandStroke}))`;
7478
export const ctrlInputBottomLineStrokeDisabled = `var(${ctrlInputBottomLineStrokeDisabledRaw}, unset)`;
75-
export const ctrlInputBottomLineStrokeSelected = `var(${ctrlInputBottomLineStrokeSelectedRaw}, var(${backgroundCtrlBrandRestRaw}))`;
79+
export const ctrlInputBottomLineStrokeSelected = `var(${ctrlInputBottomLineStrokeSelectedRaw}, var(${backgroundCtrlBrandRestRaw}, ${colorNeutralStrokeAccessiblePressed}))`;
7680
export const ctrlInputBottomLineStrokeError = `var(${ctrlInputBottomLineStrokeErrorRaw}, unset)`;
77-
export const ctrlInputStrokeHover = `var(${ctrlInputStrokeHoverRaw}, var(${strokeCtrlOnOutlineHoverRaw}))`;
81+
export const ctrlInputStrokeHover = `var(${ctrlInputStrokeHoverRaw}, var(${strokeCtrlOnOutlineHoverRaw}, ${colorNeutralStroke1Hover}))`;
7882
export const ctrlInputStrokePressed = `var(${ctrlInputStrokePressedRaw}, var(${strokeCtrlOnOutlinePressedRaw}, ${colorNeutralStroke1Pressed}))`;
7983
export const ctrlInputStrokeDisabled = `var(${ctrlInputStrokeDisabledRaw}, var(${strokeCtrlOnOutlineDisabledRaw}))`;
8084
export const ctrlInputStrokeSelected = `var(${ctrlInputStrokeSelectedRaw}, var(${strokeCtrlOnOutlineRestRaw}))`;

packages/semantic-tokens/src/control/tokens.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ import {
4747
borderRadiusMedium,
4848
colorNeutralForeground1,
4949
colorNeutralForegroundDisabled,
50-
colorNeutralForeground2,
5150
colorNeutralForegroundOnBrand,
5251
colorPaletteRedBackground3,
5352
colorPaletteRedForeground3,
@@ -396,7 +395,7 @@ export const cornerCtrlLgRest = `var(${cornerCtrlLgRestRaw}, ${borderRadiusMediu
396395
export const cornerImageInCard = `var(${cornerImageInCardRaw})`;
397396
export const foregroundCtrlNeutralPrimaryRest = `var(${foregroundCtrlNeutralPrimaryRestRaw}, ${colorNeutralForeground1})`;
398397
export const foregroundCtrlNeutralPrimaryDisabled = `var(${foregroundCtrlNeutralPrimaryDisabledRaw}, ${colorNeutralForegroundDisabled})`;
399-
export const foregroundCtrlNeutralSecondaryRest = `var(${foregroundCtrlNeutralSecondaryRestRaw}, ${colorNeutralForeground2})`;
398+
export const foregroundCtrlNeutralSecondaryRest = `var(${foregroundCtrlNeutralSecondaryRestRaw})`;
400399
export const foregroundCtrlNeutralSecondaryDisabled = `var(${foregroundCtrlNeutralSecondaryDisabledRaw}, ${colorNeutralForegroundDisabled})`;
401400
export const foregroundCtrlBrandRest = `var(${foregroundCtrlBrandRestRaw})`;
402401
export const foregroundCtrlBrandHover = `var(${foregroundCtrlBrandHoverRaw})`;

packages/semantic-tokens/src/fluentLegacyVariants.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,12 @@ export const legacyFluentVariantsValues: LegacyFluentVariants = {
8989
f2Token: 'colorNeutralBackground1',
9090
originalToken: 'ctrlInputBackgroundRest',
9191
},
92-
92+
_foregroundCtrlNeutralSecondaryRest2:{
93+
f2Token: 'colorNeutralForeground2',
94+
originalToken: 'foregroundCtrlNeutralSecondaryRest',
95+
},
96+
_foregroundCtrlNeutralSecondaryRest4:{
97+
f2Token: 'colorNeutralForeground4',
98+
originalToken: 'foregroundCtrlNeutralSecondaryRest',
99+
}
93100
};

packages/semantic-tokens/src/fluentOverrides.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,13 @@ export const fluentOverrides: FluentOverrides = {
4545
ctrlFocusOuterStroke: { f2Token: 'colorTransparentStroke' },
4646
ctrlFocusOuterStrokeWidth: { f2Token: 'strokeWidthThick' },
4747
ctrlInputBackgroundError: { f2Token: 'colorPaletteRedBorder2' },
48-
ctrlInputBottomLineStrokePressed: { f2Token: 'colorCompoundBrandStrokePressed' },
49-
ctrlInputBottomLineStrokeRest: { f2Token: 'colorCompoundBrandStroke' },
48+
ctrlInputBottomLineStrokeHover: { f2Token: 'colorNeutralStrokeAccessibleHover' },
49+
ctrlInputBottomLineStrokePressed: { f2Token: 'colorCompoundBrandStroke' },
50+
ctrlInputBottomLineStrokeRest: { f2Token: 'colorNeutralStrokeAccessible' },
51+
ctrlInputBottomLineStrokeSelected: { f2Token: 'colorNeutralStrokeAccessiblePressed' },
52+
ctrlInputStrokeHover: { f2Token: 'colorNeutralStroke1Hover' },
5053
ctrlInputStrokePressed: { f2Token: 'colorNeutralStroke1Pressed' },
54+
ctrlInputStrokeRest: { f2Token: 'colorNeutralStroke1' },
5155
ctrlLinkForegroundBrandHover: { f2Token: 'colorBrandForegroundLinkHover' },
5256
ctrlLinkForegroundBrandPressed: { f2Token: 'colorBrandForegroundLinkPressed' },
5357
ctrlLinkForegroundBrandRest: { f2Token: 'colorBrandForegroundLink' },
@@ -77,7 +81,6 @@ export const fluentOverrides: FluentOverrides = {
7781
foregroundCtrlNeutralSecondaryDisabled: { f2Token: 'colorNeutralForegroundDisabled' },
7882
foregroundCtrlNeutralSecondaryHover: { f2Token: 'colorNeutralForeground2Hover' },
7983
foregroundCtrlNeutralSecondaryPressed: { f2Token: 'colorNeutralForeground2Pressed' },
80-
foregroundCtrlNeutralSecondaryRest: { f2Token: 'colorNeutralForeground2' },
8184
foregroundCtrlOnBrandHover: { f2Token: 'colorNeutralForegroundOnBrand' },
8285
foregroundCtrlOnBrandPressed: { f2Token: 'colorNeutralForegroundOnBrand' },
8386
foregroundCtrlOnBrandRest: { f2Token: 'colorNeutralForegroundOnBrand' },

packages/semantic-tokens/src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1798,8 +1798,10 @@ export {
17981798
_ctrlAvatarPresenceBadgeStrokeWidthLg,
17991799
_ctrlAvatarPresenceBadgeStrokeWidthSm,
18001800
_ctrlButtonGapInsideDefault,
1801+
_ctrlDividerForegroundSubtle,
18011802
_ctrlInputBackgroundRestDarker,
18021803
_ctrlInputBackgroundRestLighter,
1803-
_ctrlDividerForegroundSubtle,
1804+
_foregroundCtrlNeutralSecondaryRest2,
1805+
_foregroundCtrlNeutralSecondaryRest4,
18041806
} from './legacyVariant/tokens';
18051807
export { kumoSemanticTokens } from './themes/kumoTheme';

packages/semantic-tokens/src/legacy/tokens.ts

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -110,20 +110,40 @@ export const colorTransparentStroke = 'var(--colorTransparentStroke)';
110110
*/
111111
export const colorPaletteRedBorder2 = 'var(--colorPaletteRedBorder2)';
112112
/**
113-
* CSS custom property value for the {@link @fluentui/tokens#colorCompoundBrandStrokePressed | `colorCompoundBrandStrokePressed`} design token.
113+
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStrokeAccessibleHover | `colorNeutralStrokeAccessibleHover`} design token.
114114
* @public
115115
*/
116-
export const colorCompoundBrandStrokePressed = 'var(--colorCompoundBrandStrokePressed)';
116+
export const colorNeutralStrokeAccessibleHover = 'var(--colorNeutralStrokeAccessibleHover)';
117117
/**
118118
* CSS custom property value for the {@link @fluentui/tokens#colorCompoundBrandStroke | `colorCompoundBrandStroke`} design token.
119119
* @public
120120
*/
121121
export const colorCompoundBrandStroke = 'var(--colorCompoundBrandStroke)';
122+
/**
123+
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStrokeAccessible | `colorNeutralStrokeAccessible`} design token.
124+
* @public
125+
*/
126+
export const colorNeutralStrokeAccessible = 'var(--colorNeutralStrokeAccessible)';
127+
/**
128+
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStrokeAccessiblePressed | `colorNeutralStrokeAccessiblePressed`} design token.
129+
* @public
130+
*/
131+
export const colorNeutralStrokeAccessiblePressed = 'var(--colorNeutralStrokeAccessiblePressed)';
132+
/**
133+
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStroke1Hover | `colorNeutralStroke1Hover`} design token.
134+
* @public
135+
*/
136+
export const colorNeutralStroke1Hover = 'var(--colorNeutralStroke1Hover)';
122137
/**
123138
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStroke1Pressed | `colorNeutralStroke1Pressed`} design token.
124139
* @public
125140
*/
126141
export const colorNeutralStroke1Pressed = 'var(--colorNeutralStroke1Pressed)';
142+
/**
143+
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStroke1 | `colorNeutralStroke1`} design token.
144+
* @public
145+
*/
146+
export const colorNeutralStroke1 = 'var(--colorNeutralStroke1)';
127147
/**
128148
* CSS custom property value for the {@link @fluentui/tokens#colorBrandForegroundLinkHover | `colorBrandForegroundLinkHover`} design token.
129149
* @public
@@ -249,26 +269,11 @@ export const colorPaletteDarkOrangeBackground3 = 'var(--colorPaletteDarkOrangeBa
249269
* @public
250270
*/
251271
export const colorNeutralStrokeOnBrand = 'var(--colorNeutralStrokeOnBrand)';
252-
/**
253-
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStroke1 | `colorNeutralStroke1`} design token.
254-
* @public
255-
*/
256-
export const colorNeutralStroke1 = 'var(--colorNeutralStroke1)';
257272
/**
258273
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStrokeDisabled | `colorNeutralStrokeDisabled`} design token.
259274
* @public
260275
*/
261276
export const colorNeutralStrokeDisabled = 'var(--colorNeutralStrokeDisabled)';
262-
/**
263-
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStroke1Hover | `colorNeutralStroke1Hover`} design token.
264-
* @public
265-
*/
266-
export const colorNeutralStroke1Hover = 'var(--colorNeutralStroke1Hover)';
267-
/**
268-
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralStroke1Pressed | `colorNeutralStroke1Pressed`} design token.
269-
* @public
270-
*/
271-
export const colorNeutralStroke1Pressed = 'var(--colorNeutralStroke1Pressed)';
272277
/**
273278
* CSS custom property value for the {@link @fluentui/tokens#colorBrandStroke1 | `colorBrandStroke1`} design token.
274279
* @public
@@ -424,3 +429,8 @@ export const borderRadiusXLarge = 'var(--borderRadiusXLarge)';
424429
* @public
425430
*/
426431
export const colorNeutralBackground3 = 'var(--colorNeutralBackground3)';
432+
/**
433+
* CSS custom property value for the {@link @fluentui/tokens#colorNeutralForeground4 | `colorNeutralForeground4`} design token.
434+
* @public
435+
*/
436+
export const colorNeutralForeground4 = 'var(--colorNeutralForeground4)';

0 commit comments

Comments
 (0)