Skip to content

Commit

Permalink
Add ring colors (#2051)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevekinney authored Apr 26, 2024
1 parent a945eac commit a837cdc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/lib/theme/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,22 @@ const temporal = plugin(

DEFAULT: css('--color-border-primary'),
}),
ringColor: {
primary: css('--color-border-primary'),
secondary: css('--color-border-secondary'),
subtle: css('--color-border-subtle'),
interactive: css('--color-interactive'),
'interactive-hover': css('--color-interactive-hover'),
'interactive-secondary': css('--color-border-interactive-secondary'),
inverse: css('--color-border-inverse'),
disabled: css('--color-border-disabled'),
table: css('--color-border-table'),
error: css('--color-border-error'),
information: css('--color-border-information'),
success: css('--color-border-success'),
warning: css('--color-border-warning'),
danger: css('--color-border-danger'),
},
textColor: ({ theme }) => ({
...theme('colors'),
primary: css('--color-text-primary'),
Expand Down

0 comments on commit a837cdc

Please sign in to comment.