Checkpoint
Some checks failed
Test and build / Test and lint (push) Failing after 36s
Test and build / Build collector (push) Failing after 43s
Test and build / Build receiver (push) Failing after 42s

This commit is contained in:
2026-03-05 15:38:18 +01:00
parent 3106b2cf45
commit 13afa08e8a
108 changed files with 19509 additions and 729 deletions

View File

@@ -0,0 +1,56 @@
/* Color Utilities */
.text-primary {
color: var(--app-text);
}
.text-muted {
color: var(--app-text-muted);
}
.text-subtle {
color: var(--app-text-subtle);
}
.text-code {
color: var(--app-text-code);
}
.text-accent-primary {
color: var(--app-accent-primary);
}
.text-accent-yellow {
color: var(--app-accent-yellow);
}
.text-success {
color: var(--app-status-success);
}
.text-warning {
color: var(--app-status-warning);
}
.text-error {
color: var(--app-status-error);
}
.text-info {
color: var(--app-status-info);
}
.bg-primary {
background-color: var(--app-bg);
}
.bg-elevated {
background-color: var(--app-bg-elevated);
}
.border-primary {
border-color: var(--app-border-color);
}
.border-active {
border-color: var(--app-border-color-active);
}