Skip to content

Commit ec886c8

Browse files
authored
Fix invisible button text for hx-indicator in dark mode (#3353)
Without this, in dark mode the [hx-indicator](https://htmx.org/attributes/hx-indicator/) demo button has white text on white background. Switching to `Canvas` means the button background will be black in dark mode. This is a similar fix to #2719, though we can’t use `primary` here as it would make the indicator "bars.svg" image almost invisible.
1 parent 9c5a646 commit ec886c8

File tree

1 file changed

+1
-1
lines changed
  • www/themes/htmx-theme/static/css

1 file changed

+1
-1
lines changed

www/themes/htmx-theme/static/css/site.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ tbody > tr > th[scope="rowgroup"] {
402402
padding: 1em;
403403
letter-spacing: .1em;
404404
text-transform: uppercase;
405-
background: white;
405+
background: Canvas;
406406
border: solid;
407407
cursor:pointer;
408408
border-radius: 8px;

0 commit comments

Comments
 (0)