vytal-redux/src/components/theme.ts
2022-05-25 00:02:59 -04:00

10 lines
183 B
TypeScript

import type { Theme } from 'theme-ui';
const theme: Theme = {
breakpoints: ['575px', '1060px'],
colors: {
white90: 'rgb(255, 255, 255, 0.90)',
},
};
export default theme;