`
+
+## Full React example using `useState` and the default CSS position: fixed
+
+
+
+
+
+## Inline examples
+
+These stories have been given a custom CSS positon (`position: relative`) so that they appear inline. This makes it easier to preview these examples, but in normal usage they will pin to the top right of the screen as in the above example.
+
+### Default usage
+
+
+
+### With longer content
+
+The notification is set to a max-width of 50% of the parent element (in normal usage this is the entire window). If the content is longer the box just grows downwards.
+
+
+
+### With a different icon
+
+
+
+### With different intents
+
+
+
+### Collapsed/Expanded state
+
+Set the prop `isExpanded` to expand/collapse the component. In the collapsed state the whole component is moved to the right. In normal usage when the component is fixed to the right of the screen this means the content is out of view.
+
+## Other attributes
+
+All other standard HTML attributes for `
` are supported and are passed through to the React component.
diff --git a/packages/elements/src/styles-v3/base/variables.ts b/packages/elements/src/styles-v3/base/variables.ts
index b1749285d9..b068c1b8ab 100644
--- a/packages/elements/src/styles-v3/base/variables.ts
+++ b/packages/elements/src/styles-v3/base/variables.ts
@@ -60,7 +60,7 @@ export const elVariables = css`
--intent-secondary-dark-text: var(--color-white);
--intent-critical-dark-text: var(--color-white);
--intent-success-dark-text: var(--color-white);
- --intent-danger-light-text: var(--color-white);
+ --intent-danger-dark-text: var(--color-white);
/** font variables */
--font-sans-serif: 'PT Sans', Helvetica, Arial, sans-serif;