Skip to content

Commit

Permalink
feat(theme): theme on Sound
Browse files Browse the repository at this point in the history
use themes on Sound component
  • Loading branch information
mateusfg7 committed Aug 31, 2020
1 parent bfad6d5 commit 034b2da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Sound/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ export const SoundButton = styled.div`
width: 100px;
height: 100px;
color: rgba(255, 255, 255, 0.5);
color: ${(props) => props.theme.colors.sound.color};
transition: 0.1s;
&:hover {
cursor: pointer;
color: rgba(255, 255, 255, 0.8);
color: ${(props) => props.theme.colors.sound.hover};
}
&.selected {
color: rgba(255, 255, 255, 1);
color: ${(props) => props.theme.colors.sound.selected};
}
.icons {
Expand Down

0 comments on commit 034b2da

Please sign in to comment.