react-native-currency-picker
Version:
React native library country picker
36 lines (32 loc) • 953 B
JavaScript
export const Colors = {
silver: "#BDBDBD",
gray: "#828282",
black: "#000",
whiteSmoke: "whitesmoke",
white: "#fff",
athensGray: "#F7F8FA",
backgroundCurrency: "#2D4369",
textFieldColor: "#9fa5aa",
blueZodiac: "#0c1f40",
codGray: "#1A1A1A",
mercury: "#e6e6e6",
// name color by hex: ~> http://chir.ag/projects/name-that-color/#FFFFFF
};
export const ColorDarkMode = {
flagColor: Colors.black,
txtCountryCode: Colors.white,
txtCountryName: Colors.athensGray,
txtCallingCode: Colors.silver,
txtTitleModal: Colors.white,
backgroundModal: Colors.backgroundCurrency,
backgroundInput: Colors.blueZodiac,
}
export const ColorLightMode = {
flagColor: Colors.black,
txtCountryCode: Colors.black,
txtCountryName: Colors.codGray,
txtCallingCode: Colors.gray,
txtTitleModal: Colors.black,
backgroundModal: Colors.whiteSmoke,
backgroundInput: Colors.mercury
}