Skip to content

Commit

Permalink
coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
teticio committed Oct 11, 2021
1 parent af069ad commit 41a307e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Platform.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export function Link(props) {
{...props}
style={{
color: colors.accent,
backgroundColor: colors.surface,
backgroundColor: props.surface ? colors.surface : colors.background,
textDecorationLine: 'underline',
...props.style
}}
Expand Down
8 changes: 4 additions & 4 deletions src/components/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export default function Settings({ size, creativity, noise, onChange = f => f, o
<Text h6 className='text-muted'>A value of 0% will select tracks based on how likely they are to appear together in a Spotify user's
playlist. A value of 100% will select tracks based purely on how they sound.</Text>
<VerticalSpacer />
<Row>
<Col>
<Row surface={true}>
<Col surface={true}>
<Text h6><Small>{Math.round(_creativity * 100)}%</Small></Text>
</Col>
<Col>
Expand All @@ -68,8 +68,8 @@ export default function Settings({ size, creativity, noise, onChange = f => f, o
<Form.Label htmlFor='noise'>Noise</Form.Label>
<Text h6 className='text-muted'>Controls the amount of randomness to apply.</Text>
<VerticalSpacer />
<Row>
<Col>
<Row surface={true}>
<Col surface={true}>
<Text h6><Small>{Math.round(_noise * 100)}%</Small></Text>
</Col>
<Col>
Expand Down

0 comments on commit 41a307e

Please sign in to comment.