2024-01-15 12:33:08 -08:00
|
|
|
// GLOBAL STYLES
|
|
|
|
// COLORS:
|
|
|
|
// can be made more granular to specify utility (ex: fontColors vs backgroundColors)
|
2024-01-09 15:25:36 -08: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 12:33:08 -08:00
|
|
|
};
|
|
|
|
|
2024-02-07 21:03:55 -08:00
|
|
|
export const tabIconColors = {
|
|
|
|
default: '#1D1B20',
|
|
|
|
selected: '#598EBB',
|
|
|
|
}
|
|
|
|
|
2024-01-15 12:33:08 -08: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 12:33:08 -08:00
|
|
|
};
|