Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions packages/webawesome/src/styles/native.css
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
}

del {
color: var(--wa-color-text-quiet);
color: color-mix(in oklab, currentColor, transparent 10%);
text-decoration-color: var(--wa-color-danger-on-quiet);
text-decoration-line: line-through;
text-decoration-thickness: 0.09375em;
Expand All @@ -190,7 +190,7 @@
mark {
padding: 0.125em 0.25em;

color: inherit;
color: var(--wa-color-warning-on-quiet);

background-color: var(--wa-color-warning-fill-quiet);
border-radius: var(--wa-border-radius-s);
Expand Down Expand Up @@ -226,13 +226,12 @@
kbd {
padding: 0.125em 0.25em;

color: var(--wa-color-text-normal);
font-family: var(--wa-font-family-code);
font-size: var(--wa-font-size-smaller);

border: solid var(--wa-border-width-s) var(--wa-color-neutral-border-quiet);
border: solid var(--wa-border-width-s) color-mix(in oklab, currentColor, transparent 50%);
border-radius: var(--wa-border-radius-s);
box-shadow: 0 0.125em 0 0 var(--wa-color-neutral-border-quiet);
box-shadow: 0 0.125em 0 0 color-mix(in oklab, currentColor, transparent 50%);

wa-icon {
vertical-align: -2px;
Expand All @@ -249,8 +248,12 @@
text-underline-offset: 0.125em;
}

*:is([appearance~='accent'], .wa-accent) a {
color: var(--wa-color-brand-on-loud);
}

a:hover {
color: color-mix(in oklab, var(--wa-color-text-link), var(--wa-color-mix-hover));
color: color-mix(in oklab, currentColor, var(--wa-color-mix-hover));
text-decoration: var(--wa-link-decoration-hover);
-webkit-text-decoration: var(--wa-link-decoration-hover);
}
Expand Down