Skip to content

Commit 5338858

Browse files
author
Murat
committed
docs: update colors and build
1 parent 523e486 commit 5338858

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

website/blog/2024-03-17-hello-react-native-integrate/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ tags: [introducing, integrate, upgrade]
66
---
77
I'm thrilled to introduce the launch of React Native Integrate, a powerful tool designed to simplify the integration and upgrade process for React Native projects.
88

9+
<!-- truncate -->
10+
911
Developed with developers in mind, React Native Integrate aims to manage the native code changes, making project integration smoother and more efficient than ever before.
1012

1113
With React-Native Integrate, gone are the days of manually copying and pasting code snippets or navigating through extensive documentation. This tool empowers developers to integrate popular packages, configure project settings, and manage dependencies with just a few simple commands.
1214

1315
Whether you're an experienced developer or just starting with React Native, RN Integrate is here to revolutionize the way you work. Try it out today and let us know the experience.
1416

15-
For more information and to get started, visit [docs](./docs/introduction).
17+
For more information and to get started, visit [docs](/docs/introduction).
1618

1719
Happy coding!

website/docs/for-developers/android-tasks/main-application.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ The `main_application` task is designed to facilitate modifications to the `Main
3131

3232
| Property | Type | Description |
3333
|:-----------|:-------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34-
| block | string | A string specifying the block path within the `build.gradle` file where modifications should occur. Check [Block](#block-property) section below. |
3534
| before | string or `{regex: string, flags: string}` | Text or code that is used to specify a point within the context where text should be inserted before. It can be a string or an object with a `regex` and `flags` field to perform a regex-based search. |
3635
| after | string or `{regex: string, flags: string}` | Text or code that is used to specify a point within the context where text should be inserted after. It can be a string or an object with a `regex` and `flags` field to perform a regex-based search. |
3736
| search | string or `{regex: string, flags: string}` | A string or object (with regex and flags) that narrows the context to a specific text within the method or file. |

website/docs/for-developers/android-tasks/settings_gradle.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ The `settings_gradle` task is designed to facilitate modifications to the `setti
3030

3131
| Property | Type | Description |
3232
|:-----------|:-------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
33-
| block | string | A string specifying the block path within the `build.gradle` file where modifications should occur. Check [Block](#block-property) section below. |
3433
| before | string or `{regex: string, flags: string}` | Text or code that is used to specify a point within the context where text should be inserted before. It can be a string or an object with a `regex` and `flags` field to perform a regex-based search. |
3534
| after | string or `{regex: string, flags: string}` | Text or code that is used to specify a point within the context where text should be inserted after. It can be a string or an object with a `regex` and `flags` field to perform a regex-based search. |
3635
| search | string or `{regex: string, flags: string}` | A string or object (with regex and flags) that narrows the context to a specific text within the method or file. |

website/docs/for-developers/for-developers.md renamed to website/docs/for-developers/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar_position: 3
66
If your package requires "additional steps" after installation which involves native code modification, follow these steps to allow other developers quickly integrate your package into their projects.
77

88
1. Create an `integrate.yml` configuration file in the root directory of your project.
9-
2. Specify necessary modifications. On the next page, check [Configuration](configuration) for detailed instructions.
9+
2. Specify necessary modifications. On the next page, check [Configuration](./for-developers/configuration) for detailed instructions.
1010
3. Encourage developers to run `npx react-native-integrate <your-package>` right after installation of your package.
1111

1212
## Get help from community

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const config = {
104104
items: [
105105
{
106106
label: 'Installation',
107-
to: '/docs/install',
107+
to: '/docs/usage',
108108
},
109109
],
110110
},

website/src/css/custom.css

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,26 @@
66

77
/* You can override the default Infima variables here. */
88
:root {
9-
--ifm-color-primary: #2e8555;
10-
--ifm-color-primary-dark: #29784c;
11-
--ifm-color-primary-darker: #277148;
12-
--ifm-color-primary-darkest: #205d3b;
13-
--ifm-color-primary-light: #33925d;
14-
--ifm-color-primary-lighter: #359962;
15-
--ifm-color-primary-lightest: #3cad6e;
9+
--ifm-color-primary: #536dfe;
10+
--ifm-color-primary-dark: #3151fe;
11+
--ifm-color-primary-darker: #2142fe;
12+
--ifm-color-primary-darkest: #0125eb;
13+
--ifm-color-primary-light: #7589fe;
14+
--ifm-color-primary-lighter: #8598fe;
15+
--ifm-color-primary-lightest: #b8c2ff;
1616
--ifm-code-font-size: 95%;
1717
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
1818
}
1919

2020
/* For readability concerns, you should choose a lighter palette in dark mode. */
2121
[data-theme='dark'] {
22-
--ifm-color-primary: #25c2a0;
23-
--ifm-color-primary-dark: #21af90;
24-
--ifm-color-primary-darker: #1fa588;
25-
--ifm-color-primary-darkest: #1a8870;
26-
--ifm-color-primary-light: #29d5b0;
27-
--ifm-color-primary-lighter: #32d8b4;
28-
--ifm-color-primary-lightest: #4fddbf;
22+
--ifm-color-primary: #99cdf4;
23+
--ifm-color-primary-dark: #75bbf0;
24+
--ifm-color-primary-darker: #63b3ee;
25+
--ifm-color-primary-darkest: #3c9fea;
26+
--ifm-color-primary-light: #bddff8;
27+
--ifm-color-primary-lighter: #cfe7fa;
28+
--ifm-color-primary-lightest: #ffffff;
2929
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
3030
}
3131

0 commit comments

Comments
 (0)