adjusted default theme

This commit is contained in:
2025-12-17 16:13:14 +03:00
parent b08ba4d754
commit 0acb36445f

View File

@@ -77,65 +77,65 @@ constexpr const char* COLOR_KEYS[] = {
constexpr size_t NUM_COLOR_KEYS = std::size(COLOR_KEYS); constexpr size_t NUM_COLOR_KEYS = std::size(COLOR_KEYS);
inline const std::unordered_map<std::string, uint32_t> DEFAULT_COLORS = { inline const std::unordered_map<std::string, uint32_t> DEFAULT_COLORS = {
{"background", 0x1e1e1eff}, {"background", 0x111111ff},
{"on_background", 0xd4d4d4ff}, {"on_background", 0xd4d4d4ff},
{"surface", 0x252526ff}, {"surface", 0x111111ff},
{"on_surface", 0xe8e8e8ff}, {"on_surface", 0xd4d4d4ff},
{"surface_variant", 0x2d2d30ff}, {"surface_variant", 0x191919ff},
{"on_surface_variant", 0xccccccff}, {"on_surface_variant", 0xd4d4d4ff},
{"border_focused", 0x007accff}, {"border_focused", 0x2e2e2eff},
{"border", 0x3e3e42ff}, {"border", 0x242424ff},
{"foreground", 0xccccccff}, {"foreground", 0xd2d2d2ff},
{"cursor", 0xaeafadff}, {"cursor", 0xd2d2d2ff},
{"accent", 0x0e639cff}, {"accent", 0x9a8652ff},
{"success", 0x4ec9b0ff}, {"success", 0x668a51ff},
{"info", 0x4fc1ffff}, {"info", 0x3a898cff},
{"warning", 0xdcdcaaff}, {"warning", 0xb47837ff},
{"error", 0xf48771ff}, {"error", 0xaa4e4aff},
{"on_success", 0x000000ff}, {"on_success", 0xd2d2d2ff},
{"on_info", 0x000000ff}, {"on_info", 0xd2d2d2ff},
{"on_warning", 0x000000ff}, {"on_warning", 0xd2d2d2ff},
{"on_error", 0xffffffff}, {"on_error", 0xd2d2d2ff},
{"editor_background", 0x1e1e1eff}, {"editor_background", 0x111111ff},
{"editor_command", 0xd7ba7dff}, {"editor_command", 0x3a898cff},
{"editor_comment", 0x6a9955ff}, {"editor_comment", 0x849899ff},
{"editor_disabled", 0x808080ff}, {"editor_disabled", 0x849899ff},
{"editor_emphasis", 0x569cd6ff}, {"editor_emphasis", 0xa9dc86ff},
{"editor_error", 0xf44747ff}, {"editor_error", 0xaa4e4aff},
{"editor_inactive", 0x858585ff}, {"editor_inactive", 0x849899ff},
{"editor_line_number", 0x858585ff}, {"editor_line_number", 0x849899ff},
{"editor_link", 0x3794ffff}, {"editor_link", 0xb0779eff},
{"editor_main", 0xd4d4d4ff}, {"editor_main", 0xd2d2d2ff},
{"editor_selected", 0x264f78ff}, {"editor_selected", 0x242424ff},
{"editor_selection_inactive", 0x3a3d41ff}, {"editor_selection_inactive", 0x1d1c1cff},
{"editor_string", 0xce9178ff}, {"editor_string", 0x9a8652ff},
{"editor_success", 0x89d185ff}, {"editor_success", 0x668a51ff},
{"editor_warning", 0xcca700ff}, {"editor_warning", 0xb47837ff},
{"base00", 0x181818ff}, {"base00", 0x111111ff},
{"base01", 0x282828ff}, {"base01", 0x668a51ff},
{"base02", 0x383838ff}, {"base02", 0x9a8652ff},
{"base03", 0x585858ff}, {"base03", 0xb47837ff},
{"base04", 0xb8b8b8ff}, {"base04", 0x9a5552ff},
{"base05", 0xd8d8d8ff}, {"base05", 0xaa477bff},
{"base06", 0xe8e8e8ff}, {"base06", 0x3a898cff},
{"base07", 0xf8f8f8ff}, {"base07", 0xb5b5b5ff},
{"base08", 0xab4642ff}, {"base08", 0xaa4e4aff},
{"base09", 0xdc9656ff}, {"base09", 0xa9dc86ff},
{"base0A", 0xf7ca88ff}, {"base0A", 0xb6ab82ff},
{"base0B", 0xa1b56cff}, {"base0B", 0xc5916bff},
{"base0C", 0x86c1b9ff}, {"base0C", 0xac7676ff},
{"base0D", 0x7cafc2ff}, {"base0D", 0xb0779eff},
{"base0E", 0xba8bafff}, {"base0E", 0x849899ff},
{"base0F", 0xa16946ff}, {"base0F", 0xd2d2d2ff},
}; };
} // namespace clrsync::core } // namespace clrsync::core
#endif #endif