prestyled
Version:
React components for styling web projects, based upon Theme UI
25 lines (23 loc) • 541 B
text/typescript
export const grayScale = {
grayBlack: '#22292f',
grayDarkest: '#3d4852',
grayDarker: '#606f7b',
grayDark: '#8795a1',
gray: '#b8c2cc',
grayLight: '#dae1e7',
grayLighter: '#f1f5f8',
grayLightest: '#f8fafc',
};
export const colors = {
...grayScale,
primaryDarkest: '#012949',
primaryDarker: '#024376',
primaryDark: '#035CA3',
primary: '#0476D0',
primaryLight: '#088FFA',
primaryLighter: '#35A4FB',
primaryLightest: '#62B8FC',
msAppTileColor: '#0476D0',
background: '#FFF',
text: grayScale.grayDarkest,
};