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
2023-12-01 08:57:04 +01:00

32 lines
No EOL
697 B
TypeScript

export default {
light: {
primaryText: "#000000",
secondaryText: "#404040",
interactiveText: "#0645AD",
tabIconDefault: "gray",
tabIconSelected: "#ED7D31",
color: "#000000",
accentColor: "#ED7D31",
backgroundColor: "#ffffff",
tabBarColor: "gray",
},
dark: {
// Text
primaryText: "#FFFFFF",
secondaryText: "#B3B3B3",
interactiveText: "#0645AD",
// Tabs
tabIconDefault: "#FFFFFF",
tabIconSelected: "#ED7D31",
//
color: "#FFFFFF",
accentColor: "#ED7D31",
backgroundColor: "#181818",
tabBarColor: "#121212",
}
}