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/colors.ts
2024-01-02 14:38:47 +01:00

36 lines
No EOL
936 B
TypeScript

export default {
light: {
primaryText: "#000000",
secondaryText: "#9E9E9E",
interactiveText: "#388BFF",
tabIconDefault: "#000000",
tabIconSelected: "#EF6C00",
backgroundColor: "#FFFFFF",
containerColor: "#F5F5F5",
elementDefaultColor: "#E0E0E0",
elementSelectedColor: "#9E9E9E",
accentColor: "#EF6C00",
widgetBackgroundColor: "#F7F7F7",
widgetBorderColor: "#E0E0E0",
},
dark: {
primaryText: "#FFFFFF",
secondaryText: "#B3B3B3",
interactiveText: "#388BFF",
tabIconDefault: "#FFFFFF",
tabIconSelected: "#EF6C00",
backgroundColor: "#121212",
containerColor: "#1c1c1c",
elementDefaultColor: "#535353",
elementSelectedColor: "#B3B3B3",
accentColor: "#EF6C00",
widgetBackgroundColor: "#252525",
widgetBorderColor: "#535353",
}
}