Skip to content

Commit

Permalink
fix(core): add missing color helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
fynnfeldpausch committed Oct 20, 2023
1 parent fd7a0d5 commit 3067619
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions core/src/styles/utils/_color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,28 @@
}
}

// deprecated
.cat-active {
color: cat-token('color.theme.primary.text') !important;
}

.cat-text-active {
color: cat-token('color.theme.primary.text') !important;
}

// deprecated
.cat-muted {
color: cat-token('color.ui.font.muted') !important;
}

.cat-text-muted {
color: cat-token('color.ui.font.muted') !important;
}

.cat-bg-muted {
color: cat-token('color.ui.font.muted') !important;
}

.cat-text-reset {
color: inherit !important;
}
Expand Down

0 comments on commit 3067619

Please sign in to comment.