10 lines
183 B
TypeScript
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;
|