Skip to content

Commit a04c554

Browse files
committed
new: Default main color is changed
1 parent a5e100b commit a04c554

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ TextInput and Icon is fully customizable thanks to `prop-drilling`, you can use
6161

6262
| Property | Type | Default | Description |
6363
| ---------------------------- | :-----------------: | :--------------: | --------------------------------------------------------------------------------------------------------------------- |
64-
| mainColor | string | #008FEB | change the main animated color |
64+
| mainColor | string | #2a41cb | change the main animated color |
6565
| originalColor | string | transparent | change the original/default animated color |
6666
| animatedPlaceholderTextColor | string | #757575 | change the placeholder text animated color |
6767
| ImageComponent | Component | Image | set your own image component such as; `FastImage` |

lib/InteractiveTextInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import styles, { _textInputStyle } from "./InteractiveTextInput.style";
1919

2020
const AnimatedTextInput = Animated.createAnimatedComponent(TextInput);
2121

22-
const MAIN_COLOR = "#008FEB";
22+
const MAIN_COLOR = "#2a41cb";
2323
const ORIGINAL_COLOR = "transparent";
2424
const PLACEHOLDER_COLOR = "#757575";
2525
const ORIGINAL_VALUE = 0;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-text-input-interactive",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Fully customizable, animated text input for React Native with beautiful and elegant design",
55
"main": "./build/dist/InteractiveTextInput.js",
66
"repository": "git@github.com:WrathChaos/react-native-text-input-interactive.git",

0 commit comments

Comments
 (0)