Skip to content

Commit

Permalink
Increase contrast in dark mode for various buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnei committed Jul 14, 2023
1 parent 9469d12 commit 735955c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cssStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const basicButtonStyle = (theme: Theme) => css({
export const deactivatedButtonStyle = css({
borderRadius: '10px',
cursor: "pointer",
opacity: "0.4",
opacity: "0.6",
// Flex position child elements
display: 'flex',
justifyContent: 'center',
Expand Down
1 change: 0 additions & 1 deletion src/main/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ export const SegmentsList: React.FC<{
}) => {

const { t } = useTranslation();
const theme = useSelector(selectTheme)

// Init redux variables
const segments = useSelector(selectSegments)
Expand Down
2 changes: 1 addition & 1 deletion src/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const darkMode: Theme = {
dropdown_border: `1px solid ${COLORS.neutral40}`,
menuButton_outline: '2px solid transparent',
button_outline: '0px solid transparent',
button_color: COLORS.neutral10,
button_color: COLORS.neutral20,
indicator_color: COLORS.neutral60,
icon_color: 'rgba(255, 255, 255, 0.87)',
background_finish_menu_icon: COLORS.neutral15,
Expand Down

0 comments on commit 735955c

Please sign in to comment.