feat(30-button-primary-color): separate CTA color from section headings

Phase 30 complete:\n- split semantic tokens for actions vs informational headings\n- update primary/outline button styles and rebuild CSS assets\n- update TODO/docs and close PAUL loop with SUMMARY
This commit is contained in:
2026-03-25 21:59:37 +01:00
parent f592203b60
commit 9cbe0a89f0
12 changed files with 623 additions and 3372 deletions

View File

@@ -36,8 +36,8 @@
.btn--outline-primary {
background: transparent;
border: 1px solid #4a90d9;
color: #4a90d9;
border: 1px solid var(--c-action-primary);
color: var(--c-action-primary);
cursor: pointer;
border-radius: 3px;
font-size: 0.75rem;
@@ -45,7 +45,7 @@
transition: background-color 0.15s, color 0.15s;
&:hover {
background-color: #4a90d9;
background-color: var(--c-action-primary);
color: #fff;
}