Change colors from green to blue and fix a typo

This commit is contained in:
Telesphoreo 2022-02-06 15:04:37 -06:00
parent 8f7f3c5f12
commit ba135ae79b
3 changed files with 19 additions and 19 deletions

View File

@ -111,12 +111,12 @@ This is the name for whichever database software you use. Note that `sqlite` doe
### data.side.enabled
**Options**: `true` / `false`
This will enabled Plex's Redis functionality.
This will enable Plex's Redis functionality.
### data.side.auth
**Options**: `true` / `false`
This is whether authentication mode for Redis is turned on or not
This is whether authentication mode for Redis is turned on or not.
:::info
It is highly recommended to have Redis authentication turned on.
@ -129,7 +129,7 @@ This is the hostname for Redis. This is required for Redis to work.
This is the port that Redis is listening on. This is requird for Redis to work.
### data.side.password
This is the password for your Redis instance. Note that this can be left if authentication is turned off.
This is the password for your Redis instance. Note that this can be left blank if authentication is turned off.
## Worlds
@ -148,4 +148,4 @@ Note that in the `parameters` section, this is how the world should actually be
## Debugging
**Options:** `true` / `false`
The `debug` option is standalone and enables additional logging. This may be useful for diagnosing issues as more information will be displayed in the console. It is recommended to keep this option turned off.
The `debug` option is standalone and enables additional logging. This may be useful for diagnosing issues as more information will be displayed in the console. It is recommended to keep this option turned off.

View File

@ -17,7 +17,7 @@ const sidebars = {
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
defaultSidebar: [
{
type: 'doc',

View File

@ -6,25 +6,25 @@
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e8555;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;
--ifm-color-primary: #2E86C1;
--ifm-color-primary-dark: #2874A6;
--ifm-color-primary-darker: #21618C;
--ifm-color-primary-darkest: #1B4F72;
--ifm-color-primary-light: #3498DB;
--ifm-color-primary-lighter: #5DADE2;
--ifm-color-primary-lightest: #85C1E9;
--ifm-code-font-size: 95%;
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
html[data-theme='dark'] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--ifm-color-primary: #2471A3;
--ifm-color-primary-dark: #1F618D;
--ifm-color-primary-darker: #1A5276;
--ifm-color-primary-darkest: #154360;
--ifm-color-primary-light: #2980B9;
--ifm-color-primary-lighter: #5499C7;
--ifm-color-primary-lightest: #7FB3D5;
}
.docusaurus-highlight-code-line {