We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adc0850 commit 6b6a680Copy full SHA for 6b6a680
src/components/MemoryViewer/utils.ts
@@ -23,10 +23,10 @@ export interface MemorySegment {
23
24
// Memory segment colors using CSS variables for theme support
25
export const MEMORY_SEGMENT_COLORS: Record<string, string> = {
26
+ AllocatorCachesMemory: 'var(--g-color-base-danger-medium)',
27
SharedCacheConsumption: 'var(--g-color-base-info-medium)',
- QueryExecutionConsumption: 'var(--g-color-base-positive-medium)',
28
MemTableConsumption: 'var(--g-color-base-warning-medium)',
29
- AllocatorCachesMemory: 'var(--g-color-base-danger-medium)',
+ QueryExecutionConsumption: 'var(--g-color-base-positive-medium)',
30
Other: 'var(--g-color-base-neutral-medium)',
31
};
32
0 commit comments