Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[website] Improve color contrast on the homepage #41465

Merged
merged 1 commit into from Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/components/showcase/FolderTable.tsx
Expand Up @@ -150,10 +150,10 @@ export default function BasicTable() {
<TableCell align="right">
<Typography
fontSize={13}
fontWeight={600}
fontWeight="bold"
sx={(theme: Theme) => ({
mr: 1,
color: 'success.700',
color: 'success.800',
...theme.applyDarkStyles({
color: 'success.500',
}),
Expand Down
5 changes: 3 additions & 2 deletions docs/src/components/showcase/NotificationCard.tsx
Expand Up @@ -71,9 +71,10 @@ export default function NotificationCard() {
</div>
<Chip
label="3"
color="success"
size="small"
sx={{ ml: 'auto', color: '#fff', fontSize: '0.75rem', height: 18 }}
variant="outlined"
color="success"
sx={{ ml: 'auto', fontSize: '0.75rem', height: 18 }}
/>
</Box>
</Box>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/showcase/ThemeDatePicker.tsx
Expand Up @@ -43,7 +43,7 @@ export default function ThemeDatePicker() {
paddingLeft: '18px',
},
'& .MuiTypography-caption': {
color: 'grey.500',
color: 'text.tertiary',
height: 24,
},
'[role="presentation"]': {
Expand Down