фикс: цвета в темной теме

This commit is contained in:
Vladislav Ostapov 2024-11-15 15:22:56 +03:00
parent ac04c0545b
commit 43f35da9a2
2 changed files with 3 additions and 2 deletions

View File

@ -117,7 +117,7 @@ public:
ServerResources(const ServerResources&) = delete;
ServerResources(const std::string& staticFilesPath): sf(std::make_unique<http::resource::StaticFileFactory>()), api(std::make_unique<api_driver::ApiDriver>()) {
explicit ServerResources(const std::string& staticFilesPath): sf(std::make_unique<http::resource::StaticFileFactory>()), api(std::make_unique<api_driver::ApiDriver>()) {
api->startDaemon();
auth.users.emplace_back(std::make_shared<http::auth::User>("admin", "", http::auth::User::SUPERUSER));

View File

@ -29,7 +29,8 @@ body {
--bg-color: #2d2c33;
--bg-selected: #424248;
--bg-element: #626268;
--bg-action: #4a70d5;
--bg-action: #3a58af;
--bg-danger: #ac1e1e;
}
}