This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
interaktive-systeme/constants/theme.ts
2023-12-05 14:48:32 +01:00

23 lines
No EOL
324 B
TypeScript

const SIZES = {
small: 12,
normal: 17,
large: 20,
xlarge: 25,
xxLarge: 30
}
const MARGINS = {
normal: 10
}
const SHADOWS = {
light: {
shadowColor: "#ADB7C3",
shadowRadius: 20,
elevation: 10,
shadowOpacity: 0.6,
shadowOffset: { width: 1, height: 1 }
}
}
export {SIZES, SHADOWS, MARGINS}