23 lines
310 B
TypeScript
23 lines
310 B
TypeScript
export const PROFILE_THEME = {
|
|
breakpoints: {
|
|
small: 400,
|
|
},
|
|
spacing: {
|
|
horizontal: {
|
|
small: 20,
|
|
large: 24,
|
|
},
|
|
headerBottom: 16,
|
|
tabBar: 96,
|
|
},
|
|
avatar: {
|
|
size: {
|
|
small: 74,
|
|
large: 82,
|
|
},
|
|
},
|
|
colors: {
|
|
background: '#050505',
|
|
},
|
|
} as const;
|