From 6dab43523db492ffe8f6d64fb091bab8c50d2313 Mon Sep 17 00:00:00 2001 From: Dan Fiumara <81405199+fiumad@users.noreply.github.com> Date: Wed, 1 Mar 2023 09:32:51 -0500 Subject: [PATCH] docs: create CustomThemes.md (#1210) * Create CustomThemes.md * Update doc/CustomThemes.md Co-authored-by: boojack * Update doc/CustomThemes.md Co-authored-by: boojack * Update doc/CustomThemes.md Co-authored-by: boojack * Update CustomThemes.md * Update CustomThemes.md --------- Co-authored-by: boojack --- doc/CustomThemes.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 doc/CustomThemes.md diff --git a/doc/CustomThemes.md b/doc/CustomThemes.md new file mode 100644 index 0000000..7780ee8 --- /dev/null +++ b/doc/CustomThemes.md @@ -0,0 +1,14 @@ +# Adding A Custom Theme + +1. Open the Settings Dialog +2. Navigate to the System Tab +3. In the "Additional Styles" box add these lines of code: + +```css +.memo-list-container {background-color: #INSERT COLOR HERE;} +.page-container {background-color: #INSERT COLOR HERE;} +``` + + It is recommended that you choose the same color for both options + +4. Refresh the page and the background color of your memos app will successfully update to reflect your changes