feat:data slove and update heatmap

This commit is contained in:
2025-10-29 14:09:28 +08:00
parent c50b44efe2
commit c6cef3d89d
200 changed files with 100674 additions and 52814 deletions

View File

@@ -1,60 +1,60 @@
#pragma once
#include <qcolor.h>
#include <qfont.h>
namespace creeper::theme {
enum class ColorMode { LIGHT, DARK };
struct ColorScheme {
QColor primary;
QColor on_primary;
QColor primary_container;
QColor on_primary_container;
QColor secondary;
QColor on_secondary;
QColor secondary_container;
QColor on_secondary_container;
QColor tertiary;
QColor on_tertiary;
QColor tertiary_container;
QColor on_tertiary_container;
QColor error;
QColor on_error;
QColor error_container;
QColor on_error_container;
QColor background;
QColor on_background;
QColor surface;
QColor on_surface;
QColor surface_variant;
QColor on_surface_variant;
QColor outline;
QColor outline_variant;
QColor shadow;
QColor scrim;
QColor inverse_surface;
QColor inverse_on_surface;
QColor inverse_primary;
QColor surface_container_highest;
QColor surface_container_high;
QColor surface_container;
QColor surface_container_low;
QColor surface_container_lowest;
};
struct Typography {
QFont body;
QFont title;
QFont button;
};
}
#pragma once
#include <qcolor.h>
#include <qfont.h>
namespace creeper::theme {
enum class ColorMode { LIGHT, DARK };
struct ColorScheme {
QColor primary;
QColor on_primary;
QColor primary_container;
QColor on_primary_container;
QColor secondary;
QColor on_secondary;
QColor secondary_container;
QColor on_secondary_container;
QColor tertiary;
QColor on_tertiary;
QColor tertiary_container;
QColor on_tertiary_container;
QColor error;
QColor on_error;
QColor error_container;
QColor on_error_container;
QColor background;
QColor on_background;
QColor surface;
QColor on_surface;
QColor surface_variant;
QColor on_surface_variant;
QColor outline;
QColor outline_variant;
QColor shadow;
QColor scrim;
QColor inverse_surface;
QColor inverse_on_surface;
QColor inverse_primary;
QColor surface_container_highest;
QColor surface_container_high;
QColor surface_container;
QColor surface_container_low;
QColor surface_container_lowest;
};
struct Typography {
QFont body;
QFont title;
QFont button;
};
}