Added initial token/theme styles and theme service.

This commit is contained in:
2025-12-02 22:39:09 -05:00
parent 6790a9bfff
commit 30162b6a27
5 changed files with 153 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
.text-primary {
color: var(--sys-color-primary);
}
.text-secondary {
color: var(--sys-color-secondary);
}
.text-success {
color: var(--sys-color-success);
}
.text-warning {
color: var(--sys-color-warning);
}
.text-danger {
color: var(--sys-color-danger);
}
.bg-primary {
background: var(--sys-color-primary);
}
.bg-secondary {
background: var(--sys-color-secondary);
}
.bg-black {
background: #000;
}
.bg-surface {
background: var(--sys-surface);
}
.border-primary {
border-color: var(--sys-color-primary);
}