// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 // // Embedded source of the DragonX mark (res/img/logos/logo_dragonx.svg). Kept as a string so the logo // is available in every build (dev + portable single-file) with no resource-pipeline or file dependency. // It is rasterized + recolored per theme at runtime (see util/svg_texture.*). Two fills: the crimson // body (.cls-2 #d82652) becomes the theme accent; the white detail (.cls-1 #fff) becomes the light tone. #pragma once // Global `embedded` namespace to match the generated embedded resources (embedded::ui_toml_data, etc.). namespace embedded { inline constexpr const char* kLogoDragonXSvg = R"SVG( )SVG"; } // namespace embedded