@basis-ng/styles 0.0.1-alpha.136 → 0.0.1-alpha.137

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basis-ng/styles",
3
- "version": "0.0.1-alpha.136",
3
+ "version": "0.0.1-alpha.137",
4
4
  "description": "CSS foundation for @basis-ng/primitives components",
5
5
  "main": "src/index.css",
6
6
  "exports": {
@@ -112,8 +112,8 @@ b-menu {
112
112
  button[b-menu-item-radio],
113
113
  button[b-menu-item-checkbox] {
114
114
  @apply flex items-center gap-2 cursor-pointer;
115
- @apply hover:bg-secondary/50;
116
- @apply dark:hover:bg-secondary-dark/50;
115
+ @apply hover:bg-primary/10;
116
+ @apply dark:hover:bg-primary-dark/20;
117
117
 
118
118
  &.b-destructive {
119
119
  @apply bg-destructive/10 text-destructive;
@@ -129,8 +129,8 @@ b-menu {
129
129
 
130
130
  &[aria-selected='true'],
131
131
  &.b-active {
132
- @apply bg-secondary text-secondary-foreground;
133
- @apply dark:bg-secondary-dark dark:text-secondary-foreground-dark;
132
+ @apply bg-primary/20 text-primary;
133
+ @apply dark:bg-primary-dark/30 dark:text-primary-dark;
134
134
  }
135
135
 
136
136
  &[aria-disabled='true'] {
@@ -142,13 +142,13 @@ b-menu {
142
142
  @apply flex flex-col;
143
143
 
144
144
  &:not(:first-child) {
145
- @apply border-t-1 border-secondary;
146
- @apply dark:border-secondary-dark;
145
+ @apply border-t-1 border-primary/20;
146
+ @apply dark:border-primary-dark/30;
147
147
  }
148
148
 
149
149
  &:not(:last-child) {
150
- @apply border-b-1 border-secondary;
151
- @apply dark:border-secondary-dark;
150
+ @apply border-b-1 border-primary/20;
151
+ @apply dark:border-primary-dark/30;
152
152
  }
153
153
  }
154
154
  }