react-native-autocomplete-dropdown
Version:
Dropdown Item picker with search and autocomplete (typeahead) functionality for react native
29 lines (28 loc) • 748 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.theme = exports.light = exports.dark = void 0;
const light = exports.light = {
inputBackgroundColor: '#e5ecf2',
inputPlaceholderColor: '#00000066',
inputTextColor: '#333',
suggestionsListBackgroundColor: '#fff',
itemSeparatorColor: '#ddd',
shadowColor: '#00000099',
listItemTextColor: '#333'
};
const dark = exports.dark = {
inputBackgroundColor: '#1c1c1e',
inputPlaceholderColor: '#767680',
inputTextColor: '#fff',
suggestionsListBackgroundColor: '#151516',
itemSeparatorColor: '#3e3e41',
shadowColor: '#919aaa5d',
listItemTextColor: '#dbdddf'
};
const theme = exports.theme = {
light,
dark
};
//# sourceMappingURL=theme.js.map