testpub-ssr
Version:
Test Pub SSR
30 lines (28 loc) • 419 B
text/typescript
const white = '#fff';
const black = '#111';
const colors = {
blue: '#cb3fff',
common: {
black,
white,
},
primary: {
main: '#8ef300',
light: '#146DD6',
contrastText: white,
},
error: {
main: '#A51C30',
light: '#A7333F',
contrastText: white,
},
grey: {
100: '#EAEAEA',
200: '#C9C5C5',
300: '#888',
400: '#666',
},
};
export const theme2 = {
colors,
};