Skip to content

Commit bb02c5f

Browse files
committed
Update text color for OS and browser info
1 parent 9745e27 commit bb02c5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/comment-widget/src/commenter-ua-bar.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export class CommenterUABar extends LitElement {
8888
? html`
8989
<div class="inline-flex items-center gap-1 bg-muted-3 rounded-base px-1.5 py-1">
9090
${osIcon ? html`<i class="${osIcon} opacity-90 size-3" aria-hidden="true"></i>` : ''}
91-
<span class="text-xs text-text-3">${[os.name, os.version].filter(Boolean).join(' ')}</span>
91+
<span class="text-xs text-text-2">${[os.name, os.version].filter(Boolean).join(' ')}</span>
9292
</div>
9393
`
9494
: ''
@@ -98,7 +98,7 @@ export class CommenterUABar extends LitElement {
9898
? html`
9999
<div class="inline-flex items-center gap-1 bg-muted-3 rounded-base px-1.5 py-1">
100100
${browserIcon ? html`<i class="${browserIcon} opacity-90 size-3" aria-hidden="true"></i>` : ''}
101-
<span class="text-xs text-text-3">${[browser.name, browser.major].filter(Boolean).join(' ')}</span>
101+
<span class="text-xs text-text-2">${[browser.name, browser.major].filter(Boolean).join(' ')}</span>
102102
</div>
103103
`
104104
: ''

0 commit comments

Comments
 (0)