Skip to content
Snippets Groups Projects
Commit c1b69bcb authored by Andris Borbas's avatar Andris Borbas
Browse files

Remove old theme

parent ceaa2ff5
Branches
No related tags found
No related merge requests found
import { Heading, Link } from 'rebass';
const theme = {
breakpoints: [545, 1024, 1440, 1920],
colors: {
red: '#f8485e',
darkgray: '#3d3d3d',
},
space: [0, 4, 8, 16, 32, 64, 128, 256, 512].map(value => `${value / 16}rem`),
fonts: {
sans: 'Montserrat, system-ui, sans-serif',
mono: '"Roboto Mono", monospace',
},
fontWeights: {
bold: 600,
},
Heading: {
fontWeight: 500,
textTransform: 'lowercase',
},
Link: {
padding: '0.125em 0',
textDecoration: 'none',
'p &:hover': {
background: '#f8485e',
color: 'white',
},
},
};
Heading.defaultProps = {
...Heading.defaultProps,
as: 'h1',
fontSize: '2rem',
fontFamily: 'mono',
};
Link.defaultProps = {
...Link.defaultProps,
color: 'red',
};
export default theme;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment