react-native-keyboard-controller
Version:
Keyboard manager which works in identical way on both iOS and Android
40 lines (39 loc) • 1.04 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.colors = void 0;
var _reactNative = require("react-native");
const colors = exports.colors = {
light: {
primary: _reactNative.Platform.select({
ios: (0, _reactNative.PlatformColor)("link"),
default: "#2c2c2c"
}),
disabled: _reactNative.Platform.select({
ios: (0, _reactNative.PlatformColor)("systemGray4"),
default: "#B0BEC5"
}),
background: _reactNative.Platform.select({
ios: "#F8F8F8",
default: "#f3f3f4"
}),
ripple: "#bcbcbcbc"
},
dark: {
primary: _reactNative.Platform.select({
ios: (0, _reactNative.PlatformColor)("label"),
default: "#fafafa"
}),
disabled: _reactNative.Platform.select({
ios: (0, _reactNative.PlatformColor)("systemGray"),
default: "#707070"
}),
background: _reactNative.Platform.select({
ios: "#555756",
default: "#2C2C2E"
}),
ripple: "#F8F8F888"
}
};
//# sourceMappingURL=colors.native.js.map