27 lines
537 B
TypeScript
27 lines
537 B
TypeScript
// GLOBAL STYLES
|
|
// COLORS:
|
|
// can be made more granular to specify utility (ex: fontColors vs backgroundColors)
|
|
export const colors = {
|
|
bgBlack: '#121212',
|
|
lightGrey: '#BFC2C8',
|
|
themeBrown: '#D9AA84',
|
|
panelWhite: '#F2FBFE',
|
|
tournamentBlue: '#50a6c2',
|
|
blueCloth: '#539dc2',
|
|
buttonBlue: '#1987ff',
|
|
textWhite: '#ffffff'
|
|
};
|
|
|
|
export const shadows = {
|
|
standard: {
|
|
shadowColor: '#000000',
|
|
shadowOffset: {
|
|
width: 0,
|
|
height: 3
|
|
},
|
|
shadowOpacity: 0.1,
|
|
shadowRadius: 4.65,
|
|
elevation: 3
|
|
},
|
|
};
|