Add a toggle between dark and light theme
authorGreg Burri <greg.burri@gmail.com>
Mon, 31 Mar 2025 13:31:06 +0000 (15:31 +0200)
committerGreg Burri <greg.burri@gmail.com>
Mon, 31 Mar 2025 13:31:06 +0000 (15:31 +0200)
commit559ed139aad03692b7a27a04f6ac0323475e4de6
tree0a8dc7cec07cf0e2d7ff63d7f7174b32f80427d3
parentd22617538e46bd3e144001fc29aec18f60583e60
Add a toggle between dark and light theme
35 files changed:
.gitignore
backend/Cargo.toml
backend/build.rs
backend/scss/main.scss [new file with mode: 0644]
backend/scss/style.scss [deleted file]
backend/scss/style_dark.scss [new file with mode: 0644]
backend/scss/style_light.scss [new file with mode: 0644]
backend/src/html_templates.rs
backend/src/main.rs
backend/src/services/fragments.rs
backend/src/services/mod.rs
backend/src/services/recipe.rs
backend/src/services/ron/calendar.rs
backend/src/services/ron/mod.rs
backend/src/services/ron/recipe.rs
backend/src/services/ron/shopping_list.rs
backend/src/services/user.rs
backend/src/translation.rs
backend/templates/ask_reset_password.html
backend/templates/base.html
backend/templates/base_with_header.html
backend/templates/calendar.html
backend/templates/home.html
backend/templates/profile.html
backend/templates/recipe_edit.html
backend/templates/recipe_view.html
backend/templates/recipes_list_fragment.html
backend/templates/reset_password.html
backend/templates/sign_in_form.html
backend/templates/sign_up_form.html
backend/templates/title.html
backend/translation.ron
common/src/consts.rs
frontend/.cargo/config.toml [new file with mode: 0644]
frontend/src/lib.rs