@wordpress/theme 0.1.1-next.2f1c7c01b.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/bin/terrazzo-plugin-ds-tokens-docs/index.ts +5 -24
  2. package/bin/terrazzo-plugin-inline-alias-values/index.ts +84 -0
  3. package/bin/terrazzo-plugin-known-wpds-css-variables/index.ts +19 -39
  4. package/build/color-ramps/lib/constants.js +4 -4
  5. package/build/color-ramps/lib/constants.js.map +2 -2
  6. package/build/color-ramps/lib/default-ramps.js +82 -82
  7. package/build/color-ramps/lib/default-ramps.js.map +1 -1
  8. package/build/color-ramps/lib/find-color-with-constraints.js +36 -53
  9. package/build/color-ramps/lib/find-color-with-constraints.js.map +2 -2
  10. package/build/color-ramps/lib/index.js +64 -63
  11. package/build/color-ramps/lib/index.js.map +2 -2
  12. package/build/color-ramps/lib/ramp-configs.js +3 -3
  13. package/build/color-ramps/lib/ramp-configs.js.map +1 -1
  14. package/build/color-ramps/lib/utils.js +63 -2
  15. package/build/color-ramps/lib/utils.js.map +2 -2
  16. package/build/prebuilt/js/design-tokens.js +5 -10
  17. package/build/prebuilt/js/design-tokens.js.map +2 -2
  18. package/build/prebuilt/json/figma.json +105 -905
  19. package/build/prebuilt/ts/color-tokens.js +137 -0
  20. package/build/prebuilt/ts/color-tokens.js.map +7 -0
  21. package/build/token-id.js +30 -0
  22. package/build/token-id.js.map +7 -0
  23. package/build/use-theme-provider-styles.js +18 -27
  24. package/build/use-theme-provider-styles.js.map +3 -3
  25. package/build-module/color-ramps/lib/constants.js +3 -3
  26. package/build-module/color-ramps/lib/constants.js.map +2 -2
  27. package/build-module/color-ramps/lib/default-ramps.js +82 -82
  28. package/build-module/color-ramps/lib/default-ramps.js.map +1 -1
  29. package/build-module/color-ramps/lib/find-color-with-constraints.js +38 -60
  30. package/build-module/color-ramps/lib/find-color-with-constraints.js.map +2 -2
  31. package/build-module/color-ramps/lib/index.js +68 -65
  32. package/build-module/color-ramps/lib/index.js.map +2 -2
  33. package/build-module/color-ramps/lib/ramp-configs.js +3 -3
  34. package/build-module/color-ramps/lib/ramp-configs.js.map +1 -1
  35. package/build-module/color-ramps/lib/utils.js +63 -2
  36. package/build-module/color-ramps/lib/utils.js.map +2 -2
  37. package/build-module/prebuilt/js/design-tokens.js +5 -10
  38. package/build-module/prebuilt/js/design-tokens.js.map +2 -2
  39. package/build-module/prebuilt/json/figma.json +105 -905
  40. package/build-module/prebuilt/ts/color-tokens.js +117 -0
  41. package/build-module/prebuilt/ts/color-tokens.js.map +7 -0
  42. package/build-module/token-id.js +6 -0
  43. package/build-module/token-id.js.map +7 -0
  44. package/build-module/use-theme-provider-styles.js +18 -27
  45. package/build-module/use-theme-provider-styles.js.map +2 -2
  46. package/build-types/color-ramps/lib/constants.d.ts +2 -2
  47. package/build-types/color-ramps/lib/constants.d.ts.map +1 -1
  48. package/build-types/color-ramps/lib/find-color-with-constraints.d.ts +2 -3
  49. package/build-types/color-ramps/lib/find-color-with-constraints.d.ts.map +1 -1
  50. package/build-types/color-ramps/lib/index.d.ts.map +1 -1
  51. package/build-types/color-ramps/lib/utils.d.ts +21 -2
  52. package/build-types/color-ramps/lib/utils.d.ts.map +1 -1
  53. package/build-types/color-ramps/stories/index.story.d.ts.map +1 -1
  54. package/build-types/prebuilt/ts/color-tokens.d.ts +7 -0
  55. package/build-types/prebuilt/ts/color-tokens.d.ts.map +1 -0
  56. package/build-types/stories/index.story.d.ts.map +1 -1
  57. package/build-types/theme-provider.d.ts.map +1 -1
  58. package/build-types/token-id.d.ts +9 -0
  59. package/build-types/token-id.d.ts.map +1 -0
  60. package/build-types/use-theme-provider-styles.d.ts.map +1 -1
  61. package/docs/ds-tokens.md +10 -178
  62. package/package.json +4 -4
  63. package/src/color-ramps/lib/constants.ts +7 -5
  64. package/src/color-ramps/lib/default-ramps.ts +82 -82
  65. package/src/color-ramps/lib/find-color-with-constraints.ts +53 -77
  66. package/src/color-ramps/lib/index.ts +98 -102
  67. package/src/color-ramps/lib/ramp-configs.ts +3 -3
  68. package/src/color-ramps/lib/utils.ts +109 -5
  69. package/src/color-ramps/test/__snapshots__/index.test.ts.snap +45706 -360
  70. package/src/color-ramps/test/index.test.ts +41 -14
  71. package/src/prebuilt/css/design-tokens.css +88 -413
  72. package/src/prebuilt/js/design-tokens.js +5 -10
  73. package/src/prebuilt/json/figma.json +105 -905
  74. package/src/prebuilt/ts/color-tokens.ts +117 -0
  75. package/src/stories/index.story.tsx +4 -18
  76. package/src/test/token-id.test.ts +12 -0
  77. package/src/token-id.ts +9 -0
  78. package/src/use-theme-provider-styles.ts +20 -35
  79. package/terrazzo.config.ts +15 -12
  80. package/tokens/color.json +82 -82
  81. package/tokens/dimension.json +75 -0
  82. package/tsconfig.bin.tsbuildinfo +1 -1
  83. package/tsconfig.src.tsbuildinfo +1 -1
  84. package/build/prebuilt/ts/design-tokens.js +0 -391
  85. package/build/prebuilt/ts/design-tokens.js.map +0 -7
  86. package/build-module/prebuilt/ts/design-tokens.js +0 -371
  87. package/build-module/prebuilt/ts/design-tokens.js.map +0 -7
  88. package/build-types/prebuilt/ts/design-tokens.d.ts +0 -7
  89. package/build-types/prebuilt/ts/design-tokens.d.ts.map +0 -1
  90. package/src/prebuilt/ts/design-tokens.ts +0 -371
  91. package/tokens/spacing.json +0 -45
@@ -11,14 +11,17 @@ import { buildRamp } from '../lib';
11
11
  import { BG_RAMP_CONFIG, ACCENT_RAMP_CONFIG } from '../lib/ramp-configs';
12
12
  import { DEFAULT_SEED_COLORS } from '../lib/constants';
13
13
 
14
- describe( 'buildRamps', () => {
14
+ const lStops = [ 100, 90, 80, 70, 60, 50, 40, 30, 20, 10 ];
15
+ const sStops = [ 100, 80, 60, 40, 20, 0 ];
16
+ const hstops = [ 0, 60, 120, 180, 240, 300 ];
17
+
18
+ describe.skip( 'buildRamps', () => {
15
19
  it( 'background ramp snapshots', () => {
16
- // Representative sample covering edge cases and various hue/saturation/lightness combinations
17
- const allBgColors = [
18
- 'hsl(0deg 0% 30%)', // Dark gray (desaturated)
19
- 'hsl(120deg 50% 60%)', // Mid-range green
20
- 'hsl(240deg 100% 30%)', // Dark saturated blue
21
- ];
20
+ const allBgColors = lStops.flatMap( ( l ) =>
21
+ sStops.flatMap( ( s ) =>
22
+ hstops.map( ( h ) => `hsl(${ h }deg ${ s }% ${ l }%)` )
23
+ )
24
+ );
22
25
 
23
26
  expect(
24
27
  allBgColors.map( ( bg ) => {
@@ -45,30 +48,54 @@ describe( 'buildRamps', () => {
45
48
  };
46
49
  } )
47
50
  ).toMatchSnapshot();
48
- } );
51
+ }, 10000 );
49
52
 
50
53
  it( 'accent ramp snapshots', () => {
51
- // Representative sample covering key option combinations
52
54
  const options = [
53
55
  {
54
56
  pinLightness: { stepName: 'surface2', value: 0 },
55
57
  mainDirection: 'lighter',
56
58
  },
57
59
  {
58
- pinLightness: { stepName: 'surface2', value: 0.5 },
60
+ pinLightness: { stepName: 'surface2', value: 0.1 },
61
+ mainDirection: 'lighter',
62
+ },
63
+ {
64
+ pinLightness: { stepName: 'surface2', value: 0.2 },
65
+ mainDirection: 'lighter',
66
+ },
67
+ {
68
+ pinLightness: { stepName: 'surface2', value: 0.3 },
69
+ mainDirection: 'lighter',
70
+ },
71
+ {
72
+ pinLightness: { stepName: 'surface2', value: 0.4 },
59
73
  mainDirection: 'lighter',
60
74
  },
75
+ {
76
+ pinLightness: { stepName: 'surface2', value: 0.7 },
77
+ mainDirection: 'darker',
78
+ },
79
+ {
80
+ pinLightness: { stepName: 'surface2', value: 0.8 },
81
+ mainDirection: 'darker',
82
+ },
83
+ {
84
+ pinLightness: { stepName: 'surface2', value: 0.9 },
85
+ mainDirection: 'darker',
86
+ },
61
87
  {
62
88
  pinLightness: { stepName: 'surface2', value: 1 },
63
89
  mainDirection: 'darker',
64
90
  },
65
91
  ] as const;
66
92
 
67
- // Representative sample covering different hue ranges and saturation levels
68
93
  const allPrimaryColors = [
69
- DEFAULT_SEED_COLORS.primary, // WP blue (mid saturation)
70
- DEFAULT_SEED_COLORS.error, // WP error red (saturated)
71
- '#c7a589', // WP Admin "coffee" theme accent (desaturated/beige)
94
+ ...Object.values( DEFAULT_SEED_COLORS ),
95
+ '#52accc', // WP Admin "blue" theme accent
96
+ '#c7a589', // WP Admin "coffee" theme accent
97
+ '#a3b745', // WP Admin "ectoplasm" theme accent
98
+ '#dd823b', // WP Admin "sunrise" theme accent
72
99
  ];
73
100
 
74
101
  expect(
@@ -9,412 +9,97 @@
9
9
  --wpds-border-radius-x-small: 1px; /* Extra small radius */
10
10
  --wpds-border-width-focus: 2px; /* Border width for focus ring */
11
11
  --wpds-color-bg-interactive-brand: #00000000; /* Background color for interactive elements with brand tone and normal emphasis. */
12
- --wpds-color-bg-interactive-brand-active: var(
13
- --wpds-color-private-primary-surface2
14
- ); /* Background color for interactive elements with brand tone and normal emphasis that are hovered, focused, or active. */
15
- --wpds-color-bg-interactive-brand-disabled: var(
16
- --wpds-color-private-bg-surface5
17
- ); /* Background color for interactive elements with brand tone and normal emphasis, in their disabled state. */
18
- --wpds-color-bg-interactive-brand-strong: var(
19
- --wpds-color-private-primary-bg-fill1
20
- ); /* Background color for interactive elements with brand tone and strong emphasis. */
21
- --wpds-color-bg-interactive-brand-strong-active: var(
22
- --wpds-color-private-primary-bg-fill2
23
- ); /* Background color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active. */
24
- --wpds-color-bg-interactive-brand-strong-disabled: var(
25
- --wpds-color-private-bg-surface6
26
- ); /* Background color for interactive elements with brand tone and strong emphasis, in their disabled state. */
12
+ --wpds-color-bg-interactive-brand-active: #f6f8fc; /* Background color for interactive elements with brand tone and normal emphasis that are hovered, focused, or active. */
13
+ --wpds-color-bg-interactive-brand-disabled: #e3e3e3; /* Background color for interactive elements with brand tone and normal emphasis, in their disabled state. */
14
+ --wpds-color-bg-interactive-brand-strong: #3858e9; /* Background color for interactive elements with brand tone and strong emphasis. */
15
+ --wpds-color-bg-interactive-brand-strong-active: #2e49da; /* Background color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active. */
16
+ --wpds-color-bg-interactive-brand-strong-disabled: #d3d3d3; /* Background color for interactive elements with brand tone and strong emphasis, in their disabled state. */
27
17
  --wpds-color-bg-interactive-brand-weak: #00000000; /* Background color for interactive elements with brand tone and weak emphasis. */
28
- --wpds-color-bg-interactive-brand-weak-active: var(
29
- --wpds-color-private-primary-surface4
30
- ); /* Background color for interactive elements with brand tone and weak emphasis that are hovered, focused, or active. */
31
- --wpds-color-bg-interactive-brand-weak-disabled: var(
32
- --wpds-color-private-bg-surface5
33
- ); /* Background color for interactive elements with brand tone and weak emphasis, in their disabled state. */
18
+ --wpds-color-bg-interactive-brand-weak-active: #e5ebf7; /* Background color for interactive elements with brand tone and weak emphasis that are hovered, focused, or active. */
19
+ --wpds-color-bg-interactive-brand-weak-disabled: #e3e3e3; /* Background color for interactive elements with brand tone and weak emphasis, in their disabled state. */
34
20
  --wpds-color-bg-interactive-neutral: #00000000; /* Background color for interactive elements with neutral tone and normal emphasis. */
35
- --wpds-color-bg-interactive-neutral-active: var(
36
- --wpds-color-private-bg-surface4
37
- ); /* Background color for interactive elements with neutral tone and normal emphasis that are hovered, focused, or active. */
38
- --wpds-color-bg-interactive-neutral-disabled: var(
39
- --wpds-color-private-bg-surface5
40
- ); /* Background color for interactive elements with neutral tone and normal emphasis, in their disabled state. */
41
- --wpds-color-bg-interactive-neutral-strong: var(
42
- --wpds-color-private-bg-bg-fill-inverted1
43
- ); /* Background color for interactive elements with neutral tone and strong emphasis. */
44
- --wpds-color-bg-interactive-neutral-strong-active: var(
45
- --wpds-color-private-bg-bg-fill-inverted2
46
- ); /* Background color for interactive elements with neutral tone and strong emphasis that are hovered, focused, or active. */
47
- --wpds-color-bg-interactive-neutral-strong-disabled: var(
48
- --wpds-color-private-bg-surface6
49
- ); /* Background color for interactive elements with neutral tone and strong emphasis, in their disabled state. */
21
+ --wpds-color-bg-interactive-neutral-active: #eaeaea; /* Background color for interactive elements with neutral tone and normal emphasis that are hovered, focused, or active. */
22
+ --wpds-color-bg-interactive-neutral-disabled: #e3e3e3; /* Background color for interactive elements with neutral tone and normal emphasis, in their disabled state. */
23
+ --wpds-color-bg-interactive-neutral-strong: #2d2d2d; /* Background color for interactive elements with neutral tone and strong emphasis. */
24
+ --wpds-color-bg-interactive-neutral-strong-active: #1e1e1e; /* Background color for interactive elements with neutral tone and strong emphasis that are hovered, focused, or active. */
25
+ --wpds-color-bg-interactive-neutral-strong-disabled: #d3d3d3; /* Background color for interactive elements with neutral tone and strong emphasis, in their disabled state. */
50
26
  --wpds-color-bg-interactive-neutral-weak: #00000000; /* Background color for interactive elements with neutral tone and weak emphasis. */
51
- --wpds-color-bg-interactive-neutral-weak-active: var(
52
- --wpds-color-private-bg-surface4
53
- ); /* Background color for interactive elements with neutral tone and weak emphasis that are hovered, focused, or active. */
54
- --wpds-color-bg-interactive-neutral-weak-disabled: var(
55
- --wpds-color-private-bg-surface5
56
- ); /* Background color for interactive elements with neutral tone and weak emphasis, in their disabled state. */
57
- --wpds-color-bg-surface-brand: var(
58
- --wpds-color-private-primary-surface1
59
- ); /* Background color for surfaces with brand tone and normal emphasis. */
60
- --wpds-color-bg-surface-caution: var(
61
- --wpds-color-private-caution-surface4
62
- ); /* Background color for surfaces with caution tone and normal emphasis. */
63
- --wpds-color-bg-surface-caution-weak: var(
64
- --wpds-color-private-caution-surface2
65
- ); /* Background color for surfaces with caution tone and weak emphasis. */
66
- --wpds-color-bg-surface-error: var(
67
- --wpds-color-private-error-surface4
68
- ); /* Background color for surfaces with error tone and normal emphasis. */
69
- --wpds-color-bg-surface-error-weak: var(
70
- --wpds-color-private-error-surface2
71
- ); /* Background color for surfaces with error tone and weak emphasis. */
72
- --wpds-color-bg-surface-info: var(
73
- --wpds-color-private-info-surface4
74
- ); /* Background color for surfaces with info tone and normal emphasis. */
75
- --wpds-color-bg-surface-info-weak: var(
76
- --wpds-color-private-info-surface2
77
- ); /* Background color for surfaces with info tone and weak emphasis. */
78
- --wpds-color-bg-surface-neutral: var(
79
- --wpds-color-private-bg-surface2
80
- ); /* Background color for surfaces with normal emphasis. */
81
- --wpds-color-bg-surface-neutral-strong: var(
82
- --wpds-color-private-bg-surface3
83
- ); /* Background color for surfaces with strong emphasis. */
84
- --wpds-color-bg-surface-neutral-weak: var(
85
- --wpds-color-private-bg-surface1
86
- ); /* Background color for surfaces with weak emphasis. */
87
- --wpds-color-bg-surface-success: var(
88
- --wpds-color-private-success-surface4
89
- ); /* Background color for surfaces with success tone and normal emphasis. */
90
- --wpds-color-bg-surface-success-weak: var(
91
- --wpds-color-private-success-surface2
92
- ); /* Background color for surfaces with success tone and weak emphasis. */
93
- --wpds-color-bg-surface-warning: var(
94
- --wpds-color-private-warning-surface4
95
- ); /* Background color for surfaces with warning tone and normal emphasis. */
96
- --wpds-color-bg-surface-warning-weak: var(
97
- --wpds-color-private-warning-surface2
98
- ); /* Background color for surfaces with warning tone and weak emphasis. */
99
- --wpds-color-bg-thumb-brand: var(
100
- --wpds-color-private-primary-stroke3
101
- ); /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track). */
102
- --wpds-color-bg-thumb-brand-active: var(
103
- --wpds-color-private-primary-stroke3
104
- ); /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track) that are hovered, focused, or active. */
105
- --wpds-color-bg-thumb-brand-disabled: var(
106
- --wpds-color-private-bg-stroke2
107
- ); /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track), in their disabled state. */
108
- --wpds-color-bg-thumb-neutral-weak: var(
109
- --wpds-color-private-bg-stroke3
110
- ); /* Background color for thumbs with a neutral tone and weak emphasis (eg. scrollbar thumb). */
111
- --wpds-color-bg-thumb-neutral-weak-active: var(
112
- --wpds-color-private-bg-stroke4
113
- ); /* Background color for thumbs with a neutral tone and weak emphasis (eg. scrollbar thumb) that are hovered, focused, or active. */
114
- --wpds-color-bg-track-neutral: var(
115
- --wpds-color-private-bg-stroke2
116
- ); /* Background color for tracks with a neutral tone and normal emphasis (eg. slider or progressbar track). */
117
- --wpds-color-bg-track-neutral-weak: var(
118
- --wpds-color-private-bg-stroke1
119
- ); /* Background color for tracks with a neutral tone and weak emphasis (eg. scrollbar track). */
120
- --wpds-color-fg-content-caution: var(
121
- --wpds-color-private-caution-fg-surface4
122
- ); /* Foreground color for content like text with caution tone and normal emphasis. */
123
- --wpds-color-fg-content-caution-weak: var(
124
- --wpds-color-private-caution-fg-surface3
125
- ); /* Foreground color for content like text with caution tone and weak emphasis. */
126
- --wpds-color-fg-content-error: var(
127
- --wpds-color-private-error-fg-surface4
128
- ); /* Foreground color for content like text with error tone and normal emphasis. */
129
- --wpds-color-fg-content-error-weak: var(
130
- --wpds-color-private-error-fg-surface3
131
- ); /* Foreground color for content like text with error tone and weak emphasis. */
132
- --wpds-color-fg-content-info: var(
133
- --wpds-color-private-info-fg-surface4
134
- ); /* Foreground color for content like text with info tone and normal emphasis. */
135
- --wpds-color-fg-content-info-weak: var(
136
- --wpds-color-private-info-fg-surface3
137
- ); /* Foreground color for content like text with info tone and weak emphasis. */
138
- --wpds-color-fg-content-neutral: var(
139
- --wpds-color-private-bg-fg-surface4
140
- ); /* Foreground color for content like text with normal emphasis. */
141
- --wpds-color-fg-content-neutral-weak: var(
142
- --wpds-color-private-bg-fg-surface3
143
- ); /* Foreground color for content like text with weak emphasis. */
144
- --wpds-color-fg-content-success: var(
145
- --wpds-color-private-success-fg-surface4
146
- ); /* Foreground color for content like text with success tone and normal emphasis. */
147
- --wpds-color-fg-content-success-weak: var(
148
- --wpds-color-private-success-fg-surface3
149
- ); /* Foreground color for content like text with success tone and weak emphasis. */
150
- --wpds-color-fg-content-warning: var(
151
- --wpds-color-private-warning-fg-surface4
152
- ); /* Foreground color for content like text with warning tone and normal emphasis. */
153
- --wpds-color-fg-content-warning-weak: var(
154
- --wpds-color-private-warning-fg-surface3
155
- ); /* Foreground color for content like text with warning tone and weak emphasis. */
156
- --wpds-color-fg-interactive-brand: var(
157
- --wpds-color-private-primary-fg-surface3
158
- ); /* Foreground color for interactive elements with brand tone and normal emphasis. */
159
- --wpds-color-fg-interactive-brand-active: var(
160
- --wpds-color-private-primary-fg-surface3
161
- ); /* Foreground color for interactive elements with brand tone and normal emphasis that are hovered, focused, or active. */
162
- --wpds-color-fg-interactive-brand-disabled: var(
163
- --wpds-color-private-bg-fg-surface2
164
- ); /* Foreground color for interactive elements with brand tone and normal emphasis, in their disabled state. */
165
- --wpds-color-fg-interactive-brand-strong: var(
166
- --wpds-color-private-primary-fg-fill
167
- ); /* Foreground color for interactive elements with brand tone and strong emphasis. */
168
- --wpds-color-fg-interactive-brand-strong-active: var(
169
- --wpds-color-private-primary-fg-fill
170
- ); /* Foreground color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active. */
171
- --wpds-color-fg-interactive-brand-strong-disabled: var(
172
- --wpds-color-private-bg-fg-surface3
173
- ); /* Foreground color for interactive elements with brand tone and strong emphasis, in their disabled state. */
174
- --wpds-color-fg-interactive-neutral: var(
175
- --wpds-color-private-bg-fg-surface4
176
- ); /* Foreground color for interactive elements with neutral tone and normal emphasis. */
177
- --wpds-color-fg-interactive-neutral-active: var(
178
- --wpds-color-private-bg-fg-surface4
179
- ); /* Foreground color for interactive elements with neutral tone and normal emphasis that are hovered, focused, or active. */
180
- --wpds-color-fg-interactive-neutral-disabled: var(
181
- --wpds-color-private-bg-fg-surface2
182
- ); /* Foreground color for interactive elements with neutral tone and normal emphasis, in their disabled state. */
183
- --wpds-color-fg-interactive-neutral-strong: var(
184
- --wpds-color-private-bg-fg-fill-inverted
185
- ); /* Foreground color for interactive elements with neutral tone and strong emphasis. */
186
- --wpds-color-fg-interactive-neutral-strong-active: var(
187
- --wpds-color-private-bg-fg-fill-inverted
188
- ); /* Foreground color for interactive elements with neutral tone and strong emphasis that are hovered, focused, or active. */
189
- --wpds-color-fg-interactive-neutral-strong-disabled: var(
190
- --wpds-color-private-bg-fg-surface3
191
- ); /* Foreground color for interactive elements with neutral tone and strong emphasis, in their disabled state. */
192
- --wpds-color-fg-interactive-neutral-weak: var(
193
- --wpds-color-private-bg-fg-surface3
194
- ); /* Foreground color for interactive elements with neutral tone and weak emphasis. */
195
- --wpds-color-fg-interactive-neutral-weak-disabled: var(
196
- --wpds-color-private-bg-fg-surface2
197
- ); /* Foreground color for interactive elements with neutral tone and weak emphasis, in their disabled state. */
198
- --wpds-color-private-bg-bg-fill-dark: #1e1e1e;
199
- --wpds-color-private-bg-bg-fill-inverted1: #2f2f2f;
200
- --wpds-color-private-bg-bg-fill-inverted2: #1e1e1e;
201
- --wpds-color-private-bg-bg-fill1: #555555;
202
- --wpds-color-private-bg-bg-fill2: #474747;
203
- --wpds-color-private-bg-fg-fill: #f0f0f0;
204
- --wpds-color-private-bg-fg-fill-dark: #f0f0f0;
205
- --wpds-color-private-bg-fg-fill-inverted: #f0f0f0;
206
- --wpds-color-private-bg-fg-surface1: #a9a9a9;
207
- --wpds-color-private-bg-fg-surface2: #898989;
208
- --wpds-color-private-bg-fg-surface3: #6d6d6d;
209
- --wpds-color-private-bg-fg-surface4: #1e1e1e;
210
- --wpds-color-private-bg-stroke1: #d0d0d0;
211
- --wpds-color-private-bg-stroke2: #adadad;
212
- --wpds-color-private-bg-stroke3: #898989;
213
- --wpds-color-private-bg-stroke4: #6a6a6a;
214
- --wpds-color-private-bg-surface1: #f0f0f0;
215
- --wpds-color-private-bg-surface2: #f8f8f8;
216
- --wpds-color-private-bg-surface3: #ffffff;
217
- --wpds-color-private-bg-surface4: #eaeaea;
218
- --wpds-color-private-bg-surface5: #dfdfdf;
219
- --wpds-color-private-bg-surface6: #d0d0d0;
220
- --wpds-color-private-caution-bg-fill-dark: #1f1e1b;
221
- --wpds-color-private-caution-bg-fill-inverted1: #3d2d00;
222
- --wpds-color-private-caution-bg-fill-inverted2: #1f1e1b;
223
- --wpds-color-private-caution-bg-fill1: #f0d149;
224
- --wpds-color-private-caution-bg-fill2: #dabb2b;
225
- --wpds-color-private-caution-fg-fill: #1f1e1b;
226
- --wpds-color-private-caution-fg-fill-dark: #f6f1da;
227
- --wpds-color-private-caution-fg-fill-inverted: #f6f1da;
228
- --wpds-color-private-caution-fg-surface1: #c6a800;
229
- --wpds-color-private-caution-fg-surface2: #a58700;
230
- --wpds-color-private-caution-fg-surface3: #866a00;
231
- --wpds-color-private-caution-fg-surface4: #291d00;
232
- --wpds-color-private-caution-stroke1: #b8ab76;
233
- --wpds-color-private-caution-stroke2: #988d60;
234
- --wpds-color-private-caution-stroke3: #866a00;
235
- --wpds-color-private-caution-stroke4: #644e00;
236
- --wpds-color-private-caution-surface1: #faf1cb;
237
- --wpds-color-private-caution-surface2: #fdf9e7;
238
- --wpds-color-private-caution-surface3: #ffffff;
239
- --wpds-color-private-caution-surface4: #f8ebb6;
240
- --wpds-color-private-caution-surface5: #f4e08c;
241
- --wpds-color-private-caution-surface6: #e7d070;
242
- --wpds-color-private-error-bg-fill-dark: #231c1b;
243
- --wpds-color-private-error-bg-fill-inverted1: #6d0000;
244
- --wpds-color-private-error-bg-fill-inverted2: #231c1b;
245
- --wpds-color-private-error-bg-fill1: #cc1818;
246
- --wpds-color-private-error-bg-fill2: #b90000;
247
- --wpds-color-private-error-fg-fill: #f2efef;
248
- --wpds-color-private-error-fg-fill-dark: #f2efef;
249
- --wpds-color-private-error-fg-fill-inverted: #f2efef;
250
- --wpds-color-private-error-fg-surface1: #ff8070;
251
- --wpds-color-private-error-fg-surface2: #f64b40;
252
- --wpds-color-private-error-fg-surface3: #cc1818;
253
- --wpds-color-private-error-fg-surface4: #4a0000;
254
- --wpds-color-private-error-stroke1: #dc9085;
255
- --wpds-color-private-error-stroke2: #cd695d;
256
- --wpds-color-private-error-stroke3: #cc1818;
257
- --wpds-color-private-error-stroke4: #a40000;
258
- --wpds-color-private-error-surface1: #fcecea;
259
- --wpds-color-private-error-surface2: #fdf6f5;
260
- --wpds-color-private-error-surface3: #ffffff;
261
- --wpds-color-private-error-surface4: #fae6e2;
262
- --wpds-color-private-error-surface5: #f8d8d3;
263
- --wpds-color-private-error-surface6: #f5c5be;
264
- --wpds-color-private-info-bg-fill-dark: #1b1e23;
265
- --wpds-color-private-info-bg-fill-inverted1: #00297a;
266
- --wpds-color-private-info-bg-fill-inverted2: #1b1e23;
267
- --wpds-color-private-info-bg-fill1: #0090ff;
268
- --wpds-color-private-info-bg-fill2: #007eec;
269
- --wpds-color-private-info-fg-fill: #1b1e23;
270
- --wpds-color-private-info-fg-fill-dark: #eff0f2;
271
- --wpds-color-private-info-fg-fill-inverted: #eff0f2;
272
- --wpds-color-private-info-fg-surface1: #4dafff;
273
- --wpds-color-private-info-fg-surface2: #008bfa;
274
- --wpds-color-private-info-fg-surface3: #006cd8;
275
- --wpds-color-private-info-fg-surface4: #001758;
276
- --wpds-color-private-info-stroke1: #8baed6;
277
- --wpds-color-private-info-stroke2: #5e90c7;
278
- --wpds-color-private-info-stroke3: #006cd8;
279
- --wpds-color-private-info-stroke4: #004bb5;
280
- --wpds-color-private-info-surface1: #e9f1fa;
281
- --wpds-color-private-info-surface2: #f5f9fd;
282
- --wpds-color-private-info-surface3: #ffffff;
283
- --wpds-color-private-info-surface4: #e1ecf8;
284
- --wpds-color-private-info-surface5: #d1e1f5;
285
- --wpds-color-private-info-surface6: #bad3f0;
286
- --wpds-color-private-primary-bg-fill-dark: #1b1e26;
287
- --wpds-color-private-primary-bg-fill-inverted1: #1401a4;
288
- --wpds-color-private-primary-bg-fill-inverted2: #1b1e26;
289
- --wpds-color-private-primary-bg-fill1: #3858e9;
290
- --wpds-color-private-primary-bg-fill2: #2c47d7;
291
- --wpds-color-private-primary-fg-fill: #eff0f2;
292
- --wpds-color-private-primary-fg-fill-dark: #eff0f2;
293
- --wpds-color-private-primary-fg-fill-inverted: #eff0f2;
294
- --wpds-color-private-primary-fg-surface1: #81a7ff;
295
- --wpds-color-private-primary-fg-surface2: #5780ff;
296
- --wpds-color-private-primary-fg-surface3: #3858e9;
297
- --wpds-color-private-primary-fg-surface4: #080071;
298
- --wpds-color-private-primary-stroke1: #92a4cf;
299
- --wpds-color-private-primary-stroke2: #6f85c0;
300
- --wpds-color-private-primary-stroke3: #3858e9;
301
- --wpds-color-private-primary-stroke4: #2236c7;
302
- --wpds-color-private-primary-surface1: #ecf0f9;
303
- --wpds-color-private-primary-surface2: #f6f8fc;
304
- --wpds-color-private-primary-surface3: #ffffff;
305
- --wpds-color-private-primary-surface4: #e5eaf7;
306
- --wpds-color-private-primary-surface5: #d8e0f3;
307
- --wpds-color-private-primary-surface6: #c4d0ee;
308
- --wpds-color-private-success-bg-fill-dark: #1b1f1c;
309
- --wpds-color-private-success-bg-fill-inverted1: #003a00;
310
- --wpds-color-private-success-bg-fill-inverted2: #1b1f1c;
311
- --wpds-color-private-success-bg-fill1: #4ab866;
312
- --wpds-color-private-success-bg-fill2: #34a554;
313
- --wpds-color-private-success-fg-fill: #1b1f1c;
314
- --wpds-color-private-success-fg-fill-dark: #edf2ed;
315
- --wpds-color-private-success-fg-fill-inverted: #edf2ed;
316
- --wpds-color-private-success-fg-surface1: #52bf6d;
317
- --wpds-color-private-success-fg-surface2: #2a9e4d;
318
- --wpds-color-private-success-fg-surface3: #008030;
319
- --wpds-color-private-success-fg-surface4: #002b00;
320
- --wpds-color-private-success-stroke1: #78ba84;
321
- --wpds-color-private-success-stroke2: #62996c;
322
- --wpds-color-private-success-stroke3: #008030;
323
- --wpds-color-private-success-stroke4: #006113;
324
- --wpds-color-private-success-surface1: #ddf8e0;
325
- --wpds-color-private-success-surface2: #f0fcf2;
326
- --wpds-color-private-success-surface3: #ffffff;
327
- --wpds-color-private-success-surface4: #cdf5d3;
328
- --wpds-color-private-success-surface5: #acf0b7;
329
- --wpds-color-private-success-surface6: #7be792;
330
- --wpds-color-private-warning-bg-fill-dark: #1f1e1b;
331
- --wpds-color-private-warning-bg-fill-inverted1: #472900;
332
- --wpds-color-private-warning-bg-fill-inverted2: #1f1e1b;
333
- --wpds-color-private-warning-bg-fill1: #f0b849;
334
- --wpds-color-private-warning-bg-fill2: #dba430;
335
- --wpds-color-private-warning-fg-fill: #1f1e1b;
336
- --wpds-color-private-warning-fg-fill-dark: #f3f0e9;
337
- --wpds-color-private-warning-fg-fill-inverted: #f3f0e9;
338
- --wpds-color-private-warning-fg-surface1: #d7a02b;
339
- --wpds-color-private-warning-fg-surface2: #b58000;
340
- --wpds-color-private-warning-fg-surface3: #966200;
341
- --wpds-color-private-warning-fg-surface4: #2f1800;
342
- --wpds-color-private-warning-stroke1: #c2a777;
343
- --wpds-color-private-warning-stroke2: #a08961;
344
- --wpds-color-private-warning-stroke3: #966200;
345
- --wpds-color-private-warning-stroke4: #724700;
346
- --wpds-color-private-warning-surface1: #faefdb;
347
- --wpds-color-private-warning-surface2: #fdf7ee;
348
- --wpds-color-private-warning-surface3: #ffffff;
349
- --wpds-color-private-warning-surface4: #f8e9cd;
350
- --wpds-color-private-warning-surface5: #f5ddb2;
351
- --wpds-color-private-warning-surface6: #f0cb89;
352
- --wpds-color-stroke-focus-brand: var(
353
- --wpds-color-private-primary-stroke3
354
- ); /* Accessible stroke color applied to focus rings. */
355
- --wpds-color-stroke-interactive-brand: var(
356
- --wpds-color-private-primary-stroke3
357
- ); /* Accessible stroke color used for interactive brand-toned elements with normal emphasis. */
358
- --wpds-color-stroke-interactive-brand-active: var(
359
- --wpds-color-private-primary-stroke4
360
- ); /* Accessible stroke color used for interactive brand-toned elements with normal emphasis that are hovered, focused, or active. */
361
- --wpds-color-stroke-interactive-brand-disabled: var(
362
- --wpds-color-private-bg-stroke2
363
- ); /* Accessible stroke color used for interactive brand-toned elements with normal emphasis, in their disabled state. */
364
- --wpds-color-stroke-interactive-error-strong: var(
365
- --wpds-color-private-error-stroke3
366
- ); /* Accessible stroke color used for interactive error-toned elements with strong emphasis. */
367
- --wpds-color-stroke-interactive-neutral: var(
368
- --wpds-color-private-bg-stroke3
369
- ); /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis. */
370
- --wpds-color-stroke-interactive-neutral-active: var(
371
- --wpds-color-private-bg-stroke4
372
- ); /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis that are hovered, focused, or active. */
373
- --wpds-color-stroke-interactive-neutral-disabled: var(
374
- --wpds-color-private-bg-stroke2
375
- ); /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis, in their disabled state. */
376
- --wpds-color-stroke-interactive-neutral-strong: var(
377
- --wpds-color-private-bg-stroke4
378
- ); /* Accessible stroke color used for interactive neutrally-toned elements with strong emphasis. */
379
- --wpds-color-stroke-surface-brand: var(
380
- --wpds-color-private-primary-stroke1
381
- ); /* Decorative stroke color used to define brand-toned surface boundaries with normal emphasis. */
382
- --wpds-color-stroke-surface-brand-strong: var(
383
- --wpds-color-private-primary-stroke3
384
- ); /* Decorative stroke color used to define neutrally-toned surface boundaries with strong emphasis. */
385
- --wpds-color-stroke-surface-error: var(
386
- --wpds-color-private-error-stroke1
387
- ); /* Decorative stroke color used to define error-toned surface boundaries with normal emphasis. */
388
- --wpds-color-stroke-surface-error-strong: var(
389
- --wpds-color-private-error-stroke3
390
- ); /* Decorative stroke color used to define error-toned surface boundaries with strong emphasis. */
391
- --wpds-color-stroke-surface-info: var(
392
- --wpds-color-private-info-stroke1
393
- ); /* Decorative stroke color used to define info-toned surface boundaries with normal emphasis. */
394
- --wpds-color-stroke-surface-info-strong: var(
395
- --wpds-color-private-info-stroke3
396
- ); /* Decorative stroke color used to define info-toned surface boundaries with strong emphasis. */
397
- --wpds-color-stroke-surface-neutral: var(
398
- --wpds-color-private-bg-stroke2
399
- ); /* Decorative stroke color used to define neutrally-toned surface boundaries with normal emphasis. */
400
- --wpds-color-stroke-surface-neutral-strong: var(
401
- --wpds-color-private-bg-stroke3
402
- ); /* Decorative stroke color used to define neutrally-toned surface boundaries with strong emphasis. */
403
- --wpds-color-stroke-surface-neutral-weak: var(
404
- --wpds-color-private-bg-stroke1
405
- ); /* Decorative stroke color used to define neutrally-toned surface boundaries with weak emphasis. */
406
- --wpds-color-stroke-surface-success: var(
407
- --wpds-color-private-success-stroke1
408
- ); /* Decorative stroke color used to define success-toned surface boundaries with normal emphasis. */
409
- --wpds-color-stroke-surface-success-strong: var(
410
- --wpds-color-private-success-stroke3
411
- ); /* Decorative stroke color used to define success-toned surface boundaries with strong emphasis. */
412
- --wpds-color-stroke-surface-warning: var(
413
- --wpds-color-private-warning-stroke1
414
- ); /* Decorative stroke color used to define warning-toned surface boundaries with normal emphasis. */
415
- --wpds-color-stroke-surface-warning-strong: var(
416
- --wpds-color-private-warning-stroke3
417
- ); /* Decorative stroke color used to define warning-toned surface boundaries with strong emphasis. */
27
+ --wpds-color-bg-interactive-neutral-weak-active: #eaeaea; /* Background color for interactive elements with neutral tone and weak emphasis that are hovered, focused, or active. */
28
+ --wpds-color-bg-interactive-neutral-weak-disabled: #e3e3e3; /* Background color for interactive elements with neutral tone and weak emphasis, in their disabled state. */
29
+ --wpds-color-bg-surface-brand: #edf0fa; /* Background color for surfaces with brand tone and normal emphasis. */
30
+ --wpds-color-bg-surface-caution: #f8ebb5; /* Background color for surfaces with caution tone and normal emphasis. */
31
+ --wpds-color-bg-surface-caution-weak: #fdf9e7; /* Background color for surfaces with caution tone and weak emphasis. */
32
+ --wpds-color-bg-surface-error: #fae5e2; /* Background color for surfaces with error tone and normal emphasis. */
33
+ --wpds-color-bg-surface-error-weak: #fdf6f5; /* Background color for surfaces with error tone and weak emphasis. */
34
+ --wpds-color-bg-surface-info: #e0ebf8; /* Background color for surfaces with info tone and normal emphasis. */
35
+ --wpds-color-bg-surface-info-weak: #f5f9fd; /* Background color for surfaces with info tone and weak emphasis. */
36
+ --wpds-color-bg-surface-neutral: #f8f8f8; /* Background color for surfaces with normal emphasis. */
37
+ --wpds-color-bg-surface-neutral-strong: #ffffff; /* Background color for surfaces with strong emphasis. */
38
+ --wpds-color-bg-surface-neutral-weak: #f0f0f0; /* Background color for surfaces with weak emphasis. */
39
+ --wpds-color-bg-surface-success: #cdf5d3; /* Background color for surfaces with success tone and normal emphasis. */
40
+ --wpds-color-bg-surface-success-weak: #f0fcf2; /* Background color for surfaces with success tone and weak emphasis. */
41
+ --wpds-color-bg-surface-warning: #f8e9cd; /* Background color for surfaces with warning tone and normal emphasis. */
42
+ --wpds-color-bg-surface-warning-weak: #fdf7ee; /* Background color for surfaces with warning tone and weak emphasis. */
43
+ --wpds-color-bg-thumb-brand: #3858e9; /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track). */
44
+ --wpds-color-bg-thumb-brand-active: #3858e9; /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track) that are hovered, focused, or active. */
45
+ --wpds-color-bg-thumb-brand-disabled: #adadad; /* Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track), in their disabled state. */
46
+ --wpds-color-bg-thumb-neutral-weak: #8b8b8b; /* Background color for thumbs with a neutral tone and weak emphasis (eg. scrollbar thumb). */
47
+ --wpds-color-bg-thumb-neutral-weak-active: #6d6d6d; /* Background color for thumbs with a neutral tone and weak emphasis (eg. scrollbar thumb) that are hovered, focused, or active. */
48
+ --wpds-color-bg-track-neutral: #adadad; /* Background color for tracks with a neutral tone and normal emphasis (eg. slider or progressbar track). */
49
+ --wpds-color-bg-track-neutral-weak: #cfcfcf; /* Background color for tracks with a neutral tone and weak emphasis (eg. scrollbar track). */
50
+ --wpds-color-fg-content-caution: #291d00; /* Foreground color for content like text with caution tone and normal emphasis. */
51
+ --wpds-color-fg-content-caution-weak: #876b00; /* Foreground color for content like text with caution tone and weak emphasis. */
52
+ --wpds-color-fg-content-error: #4a0000; /* Foreground color for content like text with error tone and normal emphasis. */
53
+ --wpds-color-fg-content-error-weak: #cc1818; /* Foreground color for content like text with error tone and weak emphasis. */
54
+ --wpds-color-fg-content-info: #001758; /* Foreground color for content like text with info tone and normal emphasis. */
55
+ --wpds-color-fg-content-info-weak: #006dd9; /* Foreground color for content like text with info tone and weak emphasis. */
56
+ --wpds-color-fg-content-neutral: #1e1e1e; /* Foreground color for content like text with normal emphasis. */
57
+ --wpds-color-fg-content-neutral-weak: #6e6e6e; /* Foreground color for content like text with weak emphasis. */
58
+ --wpds-color-fg-content-success: #002b00; /* Foreground color for content like text with success tone and normal emphasis. */
59
+ --wpds-color-fg-content-success-weak: #008031; /* Foreground color for content like text with success tone and weak emphasis. */
60
+ --wpds-color-fg-content-warning: #2f1800; /* Foreground color for content like text with warning tone and normal emphasis. */
61
+ --wpds-color-fg-content-warning-weak: #976300; /* Foreground color for content like text with warning tone and weak emphasis. */
62
+ --wpds-color-fg-interactive-brand: #3858e9; /* Foreground color for interactive elements with brand tone and normal emphasis. */
63
+ --wpds-color-fg-interactive-brand-active: #3858e9; /* Foreground color for interactive elements with brand tone and normal emphasis that are hovered, focused, or active. */
64
+ --wpds-color-fg-interactive-brand-disabled: #8b8b8b; /* Foreground color for interactive elements with brand tone and normal emphasis, in their disabled state. */
65
+ --wpds-color-fg-interactive-brand-strong: #eff0f2; /* Foreground color for interactive elements with brand tone and strong emphasis. */
66
+ --wpds-color-fg-interactive-brand-strong-active: #eff0f2; /* Foreground color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active. */
67
+ --wpds-color-fg-interactive-brand-strong-disabled: #6e6e6e; /* Foreground color for interactive elements with brand tone and strong emphasis, in their disabled state. */
68
+ --wpds-color-fg-interactive-neutral: #1e1e1e; /* Foreground color for interactive elements with neutral tone and normal emphasis. */
69
+ --wpds-color-fg-interactive-neutral-active: #1e1e1e; /* Foreground color for interactive elements with neutral tone and normal emphasis that are hovered, focused, or active. */
70
+ --wpds-color-fg-interactive-neutral-disabled: #8b8b8b; /* Foreground color for interactive elements with neutral tone and normal emphasis, in their disabled state. */
71
+ --wpds-color-fg-interactive-neutral-strong: #f0f0f0; /* Foreground color for interactive elements with neutral tone and strong emphasis. */
72
+ --wpds-color-fg-interactive-neutral-strong-active: #f0f0f0; /* Foreground color for interactive elements with neutral tone and strong emphasis that are hovered, focused, or active. */
73
+ --wpds-color-fg-interactive-neutral-strong-disabled: #6e6e6e; /* Foreground color for interactive elements with neutral tone and strong emphasis, in their disabled state. */
74
+ --wpds-color-fg-interactive-neutral-weak: #6e6e6e; /* Foreground color for interactive elements with neutral tone and weak emphasis. */
75
+ --wpds-color-fg-interactive-neutral-weak-disabled: #8b8b8b; /* Foreground color for interactive elements with neutral tone and weak emphasis, in their disabled state. */
76
+ --wpds-color-stroke-focus-brand: #3858e9; /* Accessible stroke color applied to focus rings. */
77
+ --wpds-color-stroke-interactive-brand: #3858e9; /* Accessible stroke color used for interactive brand-toned elements with normal emphasis. */
78
+ --wpds-color-stroke-interactive-brand-active: #2337c8; /* Accessible stroke color used for interactive brand-toned elements with normal emphasis that are hovered, focused, or active. */
79
+ --wpds-color-stroke-interactive-brand-disabled: #adadad; /* Accessible stroke color used for interactive brand-toned elements with normal emphasis, in their disabled state. */
80
+ --wpds-color-stroke-interactive-error-strong: #cc1818; /* Accessible stroke color used for interactive error-toned elements with strong emphasis. */
81
+ --wpds-color-stroke-interactive-neutral: #8b8b8b; /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis. */
82
+ --wpds-color-stroke-interactive-neutral-active: #6d6d6d; /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis that are hovered, focused, or active. */
83
+ --wpds-color-stroke-interactive-neutral-disabled: #adadad; /* Accessible stroke color used for interactive neutrally-toned elements with normal emphasis, in their disabled state. */
84
+ --wpds-color-stroke-interactive-neutral-strong: #6d6d6d; /* Accessible stroke color used for interactive neutrally-toned elements with strong emphasis. */
85
+ --wpds-color-stroke-surface-brand: #91a2cf; /* Decorative stroke color used to define brand-toned surface boundaries with normal emphasis. */
86
+ --wpds-color-stroke-surface-brand-strong: #3858e9; /* Decorative stroke color used to define neutrally-toned surface boundaries with strong emphasis. */
87
+ --wpds-color-stroke-surface-error: #dc8e83; /* Decorative stroke color used to define error-toned surface boundaries with normal emphasis. */
88
+ --wpds-color-stroke-surface-error-strong: #cc1818; /* Decorative stroke color used to define error-toned surface boundaries with strong emphasis. */
89
+ --wpds-color-stroke-surface-info: #8aaed6; /* Decorative stroke color used to define info-toned surface boundaries with normal emphasis. */
90
+ --wpds-color-stroke-surface-info-strong: #006dd9; /* Decorative stroke color used to define info-toned surface boundaries with strong emphasis. */
91
+ --wpds-color-stroke-surface-neutral: #adadad; /* Decorative stroke color used to define neutrally-toned surface boundaries with normal emphasis. */
92
+ --wpds-color-stroke-surface-neutral-strong: #8b8b8b; /* Decorative stroke color used to define neutrally-toned surface boundaries with strong emphasis. */
93
+ --wpds-color-stroke-surface-neutral-weak: #cfcfcf; /* Decorative stroke color used to define neutrally-toned surface boundaries with weak emphasis. */
94
+ --wpds-color-stroke-surface-success: #77ba84; /* Decorative stroke color used to define success-toned surface boundaries with normal emphasis. */
95
+ --wpds-color-stroke-surface-success-strong: #008031; /* Decorative stroke color used to define success-toned surface boundaries with strong emphasis. */
96
+ --wpds-color-stroke-surface-warning: #c2a776; /* Decorative stroke color used to define warning-toned surface boundaries with normal emphasis. */
97
+ --wpds-color-stroke-surface-warning-strong: #976300; /* Decorative stroke color used to define warning-toned surface boundaries with strong emphasis. */
98
+ --wpds-dimension-base: 4px; /* Base dimension unit */
99
+ --wpds-dimension-padding-surface-large: 24px; /* Large spacing for surfaces */
100
+ --wpds-dimension-padding-surface-medium: 16px; /* Medium spacing for surfaces */
101
+ --wpds-dimension-padding-surface-small: 12px; /* Small spacing for surfaces */
102
+ --wpds-dimension-padding-surface-x-small: 8px; /* Extra small spacing for surfaces */
418
103
  --wpds-elevation-large: 0 5px 15px 0 #00000014, 0 15px 27px 0 #00000012,
419
104
  0 30px 36px 0 #0000000a, 0 50px 43px 0 #00000005; /* For components that confirm decisions or handle necessary interruptions. Example: Modals. */
420
105
  --wpds-elevation-medium: 0 2px 3px 0 #0000000d, 0 4px 5px 0 #0000000a,
@@ -440,16 +125,6 @@
440
125
  --wpds-font-size-small: 12px; /* Small font size */
441
126
  --wpds-font-size-x-large: 20px; /* Extra large font size */
442
127
  --wpds-font-size-x-small: 11px; /* Extra small font size */
443
- --wpds-spacing-05: 4px; /* Extra small spacing */
444
- --wpds-spacing-10: 8px; /* Small spacing */
445
- --wpds-spacing-15: 12px; /* Medium spacing */
446
- --wpds-spacing-20: 16px; /* Large spacing */
447
- --wpds-spacing-30: 24px; /* Extra large spacing */
448
- --wpds-spacing-40: 32px; /* 2X large spacing */
449
- --wpds-spacing-50: 40px; /* 3X large spacing */
450
- --wpds-spacing-60: 48px; /* 4X large spacing */
451
- --wpds-spacing-70: 56px; /* 5X large spacing */
452
- --wpds-spacing-80: 64px; /* 6X large spacing */
453
128
  }
454
129
 
455
130
  @media ( -webkit-min-device-pixel-ratio: 2 ), ( min-resolution: 192dpi ) {