Skip to content

Commit

Permalink
fix(#2593): link color
Browse files Browse the repository at this point in the history
  • Loading branch information
kingalg committed Oct 16, 2024
1 parent 5bdee6b commit 6b10a18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const StyledTypography = styled(Typography)(({ theme }) => ({
},

[`& .${classes.link}`]: {
color: theme.palette.colors.lushSky,
color: theme.palette.colors.linkBlue,
cursor: 'pointer',
textDecoration: 'none',
'&:hover': {
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop/src/renderer/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const lightTheme = createTheme({
darkPurple: '#4d1a6d', // To be replaced with theme.palette.primary.dark?
lushSky: '#67BFD3',
lushSky12: '#EDF7FA',
linkBlue: '#59c0d5', // Used in a variety of places - likely wants to be split / consolidated
linkBlue: '#1B6FEC', // Used in a variety of places - likely wants to be split / consolidated
// Reds
red: '#FF0000', // Replace with D13135 ?
hotRed: '#E42656', // Replaced by theme.palette.secondary.main?
Expand Down

0 comments on commit 6b10a18

Please sign in to comment.