update theme

This commit is contained in:
Dawid Wysokiński 2021-01-04 19:38:05 +01:00
parent 06f247a5c7
commit d5b1559f60
3 changed files with 22 additions and 10 deletions

View File

@ -3,6 +3,24 @@ import { createMuiTheme, responsiveFontSizes } from '@material-ui/core/styles';
const theme = createMuiTheme({
palette: {
type: 'dark',
primary: {
main: '#BB86FC',
contrastText: '#000',
},
secondary: {
main: '#03DAC6',
contrastText: '#000',
},
},
typography: {
h2: {
fontWeight: 400,
},
},
props: {
MuiLink: {
underline: 'none',
},
},
});

View File

@ -8,8 +8,8 @@ import Link from '../components/Link';
const LinkButton = ({ children, href, to }) => {
return (
<Link href={href} to={to} underline="none">
<Button size="large" color="secondary" variant="contained">
<Link href={href} to={to}>
<Button size="large" color="primary" variant="contained">
<Typography variant="h4">{children}</Typography>
</Button>
</Link>

View File

@ -55,9 +55,7 @@ function SupportedVersionsPage({ location }) {
<Container>
<header>
<Typography variant="h1" align="center">
<Link color="secondary" underline="none" to="/">
TWHelp
</Link>
<Link to="/">TWHelp</Link>
</Typography>
<Typography variant="h2" align="center" gutterBottom>
Version selection
@ -69,11 +67,7 @@ function SupportedVersionsPage({ location }) {
<Card>
<CardHeader
title={
<Link
color="secondary"
underline="none"
href={buildURLToVersionPage(baseUrl, version.code)}
>
<Link href={buildURLToVersionPage(baseUrl, version.code)}>
{version.host}
</Link>
}