2024-01-15 13:33:08 -07:00
|
|
|
// GLOBAL STYLES
|
|
|
|
// COLORS:
|
|
|
|
// can be made more granular to specify utility (ex: fontColors vs backgroundColors)
|
2024-01-09 16:25:36 -07:00
|
|
|
export const colors = {
|
2024-02-03 20:23:31 -07:00
|
|
|
bgBlack: "#121212",
|
|
|
|
lightGrey: "#BFC2C8",
|
|
|
|
themeBrown: "#D9AA84",
|
|
|
|
panelWhite: "#F2FBFE",
|
|
|
|
tournamentBlue: "#50a6c2",
|
|
|
|
blueCloth: "#539dc2",
|
|
|
|
buttonBlue: "#1987ff",
|
|
|
|
textWhite: "#ffffff",
|
2024-01-15 13:33:08 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
export const shadows = {
|
2024-02-03 20:23:31 -07:00
|
|
|
standard: {
|
|
|
|
shadowColor: "#000000",
|
|
|
|
shadowOffset: {
|
|
|
|
width: 0,
|
|
|
|
height: 3,
|
|
|
|
},
|
|
|
|
shadowOpacity: 0.1,
|
|
|
|
shadowRadius: 4.65,
|
|
|
|
elevation: 3,
|
|
|
|
},
|
2024-01-15 13:33:08 -07:00
|
|
|
};
|