Skip to content

Commit

Permalink
Open Channel: Tabs: ensure text is readable in light themes
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Dec 18, 2024
1 parent b8ebb4c commit 275bed3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions views/OpenChannel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,10 @@ export default class OpenChannel extends React.Component<
'views.OpenChannel.openChannel'
)
}
titleStyle={styles.tabTitleStyle}
titleStyle={{
...styles.tabTitleStyle,
color: themeColor('text')
}}
containerStyle={{
backgroundColor: themeColor('secondary')
}}
Expand All @@ -395,7 +398,10 @@ export default class OpenChannel extends React.Component<
title={localeString(
'views.OpenChannel.connectPeer'
)}
titleStyle={styles.tabTitleStyle}
titleStyle={{
...styles.tabTitleStyle,
color: themeColor('text')
}}
containerStyle={{
backgroundColor: themeColor('secondary')
}}
Expand Down

0 comments on commit 275bed3

Please sign in to comment.