diff --git a/resources/css/showcase.css b/resources/css/showcase.css
index 046bb8a6..36520739 100644
--- a/resources/css/showcase.css
+++ b/resources/css/showcase.css
@@ -359,4 +359,28 @@
[data-md-showcase-icon-color='secondary'] [data-md-icon] {
color: var(--md-sys-color-secondary);
}
+
+ /* Communication: the "plain" badge's own colours (that variant draws none, by design, so the
+ caller paints it), a focus ring's corner on a plain span standing in for a control, and the
+ illustration's two decorative colours beyond currentColor. */
+ [data-md-showcase-badge-plain] {
+ background-color: var(--md-sys-color-primary-fixed);
+ color: var(--md-sys-color-on-primary-fixed);
+ }
+
+ [data-md-showcase-focus-demo] {
+ border-radius: var(--md-sys-shape-corner-xs);
+ }
+
+ [data-md-showcase-illustration='container'] {
+ fill: var(--md-sys-color-primary-container);
+ }
+
+ [data-md-showcase-illustration='accent'] {
+ fill: var(--md-sys-color-tertiary);
+ }
+
+ [data-md-showcase-illustration='on-accent'] {
+ fill: var(--md-sys-color-on-tertiary);
+ }
}
diff --git a/resources/views/showcase/sections/communication.blade.php b/resources/views/showcase/sections/communication.blade.php
index 3059f2b5..e5c4a31a 100644
--- a/resources/views/showcase/sections/communication.blade.php
+++ b/resources/views/showcase/sections/communication.blade.php
@@ -1,9 +1,9 @@
@php
$examples = [
'Badges' => <<<'BLADE'
-
+
A description makes the snackbar 68px, M3's two-line height; below medium the action wraps under the text.
- Press Alt + G to move the focus to a snackbar that has an action.
+ Press Alt + G to move the focus to a snackbar that has an action.
+
<x-badge>, <x-toast> (the snackbar host, fed by the Toasts concern or materialToast()),
<x-tooltip>, <x-rich-tooltip>, <x-alert>, <x-stat> and <x-empty-state>.