From 9e5a54477f7c51d2d9e6db64f5f66dd8fe11001e Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Sat, 20 Sep 2025 12:58:59 -0500 Subject: [PATCH] docs: Add Info Regarding Theme Settings Config (#6198) --- docs/docs/documentation/getting-started/faq.md | 10 +++++----- .../getting-started/installation/backend-config.md | 7 +++++++ 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/docs/docs/documentation/getting-started/faq.md b/docs/docs/documentation/getting-started/faq.md index dc7c0caf9..6f6728b90 100644 --- a/docs/docs/documentation/getting-started/faq.md +++ b/docs/docs/documentation/getting-started/faq.md @@ -72,7 +72,7 @@ Mealie allows you to link ingredients to specific steps in a recipe, ensuring you know exactly when to add each ingredient during the cooking process. **Link Ingredients to Steps in a Recipe** - + 1. Go to a recipe 2. Click the Edit button/icon 3. Scroll down to the step you want to link ingredients to @@ -82,7 +82,7 @@ 7. Click 'Save' on the Recipe You can optionally link the same ingredient to multiple steps, which is useful for prepping an ingredient in one step and using it in another. - + ??? question "What is fuzzy search and how do I use it?" ### What is fuzzy search and how do I use it? @@ -111,7 +111,7 @@ You can change the theme by settings the environment variables. - - [Backend Config - Themeing](./installation/backend-config.md#themeing) + - [Backend Config - Theming](./installation/backend-config.md#theming) ??? question "How can I change the login session timeout?" @@ -233,7 +233,7 @@ ### How can I use Mealie externally - Exposing Mealie or any service to the internet can pose significant security risks. Before proceeding, carefully evaluate the potential impacts on your system. Due to the unique nature of each network, we cannot provide specific steps for your setup. + Exposing Mealie or any service to the internet can pose significant security risks. Before proceeding, carefully evaluate the potential impacts on your system. Due to the unique nature of each network, we cannot provide specific steps for your setup. There is a community guide available for one way to potentially set this up, and you could reach out on Discord for further discussion on what may be best for your network. @@ -267,7 +267,7 @@ ### Why setup Email? - Mealie uses email to send account invites and password resets. If you don't use these features, you don't need to set up email. There are also other methods to perform these actions that do not require the setup of Email. + Mealie uses email to send account invites and password resets. If you don't use these features, you don't need to set up email. There are also other methods to perform these actions that do not require the setup of Email. Email settings can be adjusted via environment variables on the backend container: diff --git a/docs/docs/documentation/getting-started/installation/backend-config.md b/docs/docs/documentation/getting-started/installation/backend-config.md index 0bf06e304..45f5234a0 100644 --- a/docs/docs/documentation/getting-started/installation/backend-config.md +++ b/docs/docs/documentation/getting-started/installation/backend-config.md @@ -138,6 +138,13 @@ For custom mapping variables (e.g. OPENAI_CUSTOM_HEADERS) you should pass values Setting the following environmental variables will change the theme of the frontend. Note that the themes are the same for all users. This is a break-change when migration from v0.x.x -> 1.x.x. +!!! info + If you're setting these variables but not seeing these changes persist, try removing the `#` character. Also, depending on which syntax you're using, double-check you're using quotes correctly. + + If using YAML mapping syntax, be sure to include quotes around these values, otherwise they will be treated as comments in your YAML file:
`THEME_LIGHT_PRIMARY: '#E58325'` or `THEME_LIGHT_PRIMARY: 'E58325'` + + If using YAML sequence syntax, don't include any quotes:
`THEME_LIGHT_PRIMARY=#E58325` or `THEME_LIGHT_PRIMARY=E58325` + | Variables | Default | Description | | --------------------- | :-----: | --------------------------- | | THEME_LIGHT_PRIMARY | #E58325 | Light Theme Config Variable |