Skip to content

Commit 5c81cd8

Browse files
committed
[chrome] apply style to siteoptionsbutton and bookmarkbutton
1 parent a2f0aa6 commit 5c81cd8

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

packages/chrome/src/components/Omnibar/BookmarkButton.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export function BookmarkButton(s: { url: URL }) {
4848
BookmarkButton.style = css`
4949
:scope {
5050
font-size: 1em;
51-
color: var(--fg2);
51+
color: var(--toolbar_text);
5252
display: flex;
5353
margin: 0.25em;
5454
padding: 0.25em;
@@ -58,10 +58,9 @@ BookmarkButton.style = css`
5858
align-items: center;
5959
justify-content: center;
6060
61-
color: var(--fg2);
6261
border-radius: 0.2em;
6362
}
6463
:scope:hover {
65-
background: var(--bg01);
64+
background: var(--toolbarbutton-hover-background);
6665
}
6766
`;

packages/chrome/src/components/Omnibar/SiteOptionsButton.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ SiteOptionsButton.style = css`
3434
background: none;
3535
outline: none;
3636
border: none;
37-
color: var(--fg);
37+
color: var(--toolbar_text);
3838
font-size: 1em;
3939
padding: 0.1em;
4040
border-radius: 0.2em;
4141
display: flex;
4242
align-items: center;
4343
justify-content: center;
44-
background: var(--bg01);
44+
background: var(--toolbar);
4545
}
4646
:scope:hover {
47-
background: var(--bg02);
47+
background: var(--toolbarbutton-hover-background);
4848
}
4949
`;

0 commit comments

Comments
 (0)