From 0acb36445fa6594be054a73f6beacb833e0b435d Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Wed, 17 Dec 2025 16:13:14 +0300 Subject: [PATCH] adjusted default theme --- src/core/palette/color_keys.hpp | 98 ++++++++++++++++----------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/src/core/palette/color_keys.hpp b/src/core/palette/color_keys.hpp index d1caee7..d1508cb 100644 --- a/src/core/palette/color_keys.hpp +++ b/src/core/palette/color_keys.hpp @@ -77,65 +77,65 @@ constexpr const char* COLOR_KEYS[] = { constexpr size_t NUM_COLOR_KEYS = std::size(COLOR_KEYS); inline const std::unordered_map DEFAULT_COLORS = { - {"background", 0x1e1e1eff}, + {"background", 0x111111ff}, {"on_background", 0xd4d4d4ff}, - {"surface", 0x252526ff}, - {"on_surface", 0xe8e8e8ff}, + {"surface", 0x111111ff}, + {"on_surface", 0xd4d4d4ff}, - {"surface_variant", 0x2d2d30ff}, - {"on_surface_variant", 0xccccccff}, + {"surface_variant", 0x191919ff}, + {"on_surface_variant", 0xd4d4d4ff}, - {"border_focused", 0x007accff}, - {"border", 0x3e3e42ff}, + {"border_focused", 0x2e2e2eff}, + {"border", 0x242424ff}, - {"foreground", 0xccccccff}, + {"foreground", 0xd2d2d2ff}, - {"cursor", 0xaeafadff}, - {"accent", 0x0e639cff}, + {"cursor", 0xd2d2d2ff}, + {"accent", 0x9a8652ff}, - {"success", 0x4ec9b0ff}, - {"info", 0x4fc1ffff}, - {"warning", 0xdcdcaaff}, - {"error", 0xf48771ff}, + {"success", 0x668a51ff}, + {"info", 0x3a898cff}, + {"warning", 0xb47837ff}, + {"error", 0xaa4e4aff}, - {"on_success", 0x000000ff}, - {"on_info", 0x000000ff}, - {"on_warning", 0x000000ff}, - {"on_error", 0xffffffff}, + {"on_success", 0xd2d2d2ff}, + {"on_info", 0xd2d2d2ff}, + {"on_warning", 0xd2d2d2ff}, + {"on_error", 0xd2d2d2ff}, - {"editor_background", 0x1e1e1eff}, - {"editor_command", 0xd7ba7dff}, - {"editor_comment", 0x6a9955ff}, - {"editor_disabled", 0x808080ff}, - {"editor_emphasis", 0x569cd6ff}, - {"editor_error", 0xf44747ff}, - {"editor_inactive", 0x858585ff}, - {"editor_line_number", 0x858585ff}, - {"editor_link", 0x3794ffff}, - {"editor_main", 0xd4d4d4ff}, - {"editor_selected", 0x264f78ff}, - {"editor_selection_inactive", 0x3a3d41ff}, - {"editor_string", 0xce9178ff}, - {"editor_success", 0x89d185ff}, - {"editor_warning", 0xcca700ff}, + {"editor_background", 0x111111ff}, + {"editor_command", 0x3a898cff}, + {"editor_comment", 0x849899ff}, + {"editor_disabled", 0x849899ff}, + {"editor_emphasis", 0xa9dc86ff}, + {"editor_error", 0xaa4e4aff}, + {"editor_inactive", 0x849899ff}, + {"editor_line_number", 0x849899ff}, + {"editor_link", 0xb0779eff}, + {"editor_main", 0xd2d2d2ff}, + {"editor_selected", 0x242424ff}, + {"editor_selection_inactive", 0x1d1c1cff}, + {"editor_string", 0x9a8652ff}, + {"editor_success", 0x668a51ff}, + {"editor_warning", 0xb47837ff}, - {"base00", 0x181818ff}, - {"base01", 0x282828ff}, - {"base02", 0x383838ff}, - {"base03", 0x585858ff}, - {"base04", 0xb8b8b8ff}, - {"base05", 0xd8d8d8ff}, - {"base06", 0xe8e8e8ff}, - {"base07", 0xf8f8f8ff}, - {"base08", 0xab4642ff}, - {"base09", 0xdc9656ff}, - {"base0A", 0xf7ca88ff}, - {"base0B", 0xa1b56cff}, - {"base0C", 0x86c1b9ff}, - {"base0D", 0x7cafc2ff}, - {"base0E", 0xba8bafff}, - {"base0F", 0xa16946ff}, + {"base00", 0x111111ff}, + {"base01", 0x668a51ff}, + {"base02", 0x9a8652ff}, + {"base03", 0xb47837ff}, + {"base04", 0x9a5552ff}, + {"base05", 0xaa477bff}, + {"base06", 0x3a898cff}, + {"base07", 0xb5b5b5ff}, + {"base08", 0xaa4e4aff}, + {"base09", 0xa9dc86ff}, + {"base0A", 0xb6ab82ff}, + {"base0B", 0xc5916bff}, + {"base0C", 0xac7676ff}, + {"base0D", 0xb0779eff}, + {"base0E", 0x849899ff}, + {"base0F", 0xd2d2d2ff}, }; } // namespace clrsync::core #endif