mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Use a themed font colour for the article actions buttons
This commit is contained in:
parent
19e3af66d5
commit
ce21621927
1 changed files with 5 additions and 5 deletions
|
|
@ -44,25 +44,25 @@ export function ArticleActionsMenu(props: ArticleActionsMenuProps): JSX.Element
|
|||
}}
|
||||
>
|
||||
<Button style='articleActionIcon'>
|
||||
<TextAa size={24} color='#5D5C5B' />
|
||||
<TextAa size={24} color={theme.colors.readerFont.toString()} />
|
||||
</Button>
|
||||
<MenuSeparator layout={props.layout} />
|
||||
|
||||
<Button style='articleActionIcon'>
|
||||
<TagSimple size={24} color='#5D5C5B' />
|
||||
<TagSimple size={24} color={theme.colors.readerFont.toString()} />
|
||||
</Button>
|
||||
<Button style='articleActionIcon'>
|
||||
<HighlighterCircle size={24} color='#5D5C5B' />
|
||||
<HighlighterCircle size={24} color={theme.colors.readerFont.toString()} />
|
||||
</Button>
|
||||
<MenuSeparator layout={props.layout} />
|
||||
|
||||
<Button style='articleActionIcon'>
|
||||
<ArchiveBox size={24} color='#5D5C5B' />
|
||||
<ArchiveBox size={24} color={theme.colors.readerFont.toString()} />
|
||||
</Button>
|
||||
<MenuSeparator layout={props.layout} />
|
||||
|
||||
<Button style='articleActionIcon'>
|
||||
<DotsThree size={24} color='#5D5C5B' />
|
||||
<DotsThree size={24} color={theme.colors.readerFont.toString()} />
|
||||
</Button>
|
||||
</Box>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue