UNPKG

react-native-really-awesome-button

Version:

React Native Button UI component that renders an 60fps animated set of progress enabled 3D performant buttons.

104 lines (102 loc) 2.45 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _colors = _interopRequireDefault(require("./colors")); var _social = _interopRequireDefault(require("./social")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // @ts-ignore const blue = '#49536F'; const yellow = '#FEFC81'; const green = '#3DB64B'; const skin = '#ECCAB1'; const radioactive = '#D2E054'; const brown = '#6D4B29'; const COMMON = { borderRadius: 25, height: 55, activityColor: '#b3e5e1', raiseLevel: 6 }; const SOCIAL_TYPES = (0, _social.default)(COMMON); const BUTTONS = { primary: { ...COMMON, backgroundColor: blue, backgroundDarker: (0, _colors.default)(-0.3, blue), backgroundProgress: (0, _colors.default)(-0.62, blue), textColor: (0, _colors.default)(0.75, blue), activityColor: (0, _colors.default)(0.75, blue) }, secondary: { ...COMMON, backgroundColor: yellow, backgroundDarker: (0, _colors.default)(-0.3, yellow), backgroundProgress: (0, _colors.default)(-0.62, yellow), textColor: (0, _colors.default)(-0.9, yellow), activityColor: (0, _colors.default)(-0.9, yellow) }, anchor: { ...COMMON, backgroundColor: skin, backgroundDarker: brown, backgroundProgress: (0, _colors.default)(-0.5, skin), textColor: brown, activityColor: brown }, danger: { ...COMMON, backgroundColor: green, backgroundDarker: radioactive, backgroundProgress: (0, _colors.default)(-0.62, green), textColor: radioactive, borderColor: radioactive, activityColor: radioactive }, disabled: { ...COMMON, backgroundColor: '#DFDFDF', backgroundDarker: '#CACACA', textColor: '#B6B6B6' }, flat: { backgroundColor: 'rgba(0, 0, 0, 0)', backgroundDarker: 'rgba(0, 0, 0, 0)', backgroundShadow: 'rgba(0, 0, 0, 0)', raiseLevel: 0, borderRadius: 0 }, ...SOCIAL_TYPES }; const SIZE = { icon: { width: 55, height: 55, textSize: 12, paddingHorizontal: 4 }, small: { width: 120, height: 42, textSize: 12 }, medium: { width: 200, height: 55 }, large: { width: 250, height: 60, textSize: 16 } }; var _default = { title: 'C-137 Theme', background: '#fffa82', color: '#535015', buttons: BUTTONS, size: SIZE }; exports.default = _default; //# sourceMappingURL=c137.js.map