@basis-ng/styles 0.0.1-alpha.138 → 0.0.1-alpha.139

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.138",
3
+ "version": "0.0.1-alpha.139",
4
4
  "description": "CSS foundation for @basis-ng/primitives components",
5
5
  "main": "src/index.css",
6
6
  "exports": {
@@ -1,7 +1,7 @@
1
1
  b-tabs {
2
2
  @apply flex items-center;
3
- @apply bg-secondary/50 text-secondary-foreground;
4
- @apply dark:bg-secondary-dark/50 dark:text-secondary-foreground-dark;
3
+ @apply bg-primary/5 text-secondary-foreground;
4
+ @apply dark:bg-primary-dark/5 dark:text-secondary-foreground-dark;
5
5
 
6
6
  /* Base md by default */
7
7
  @apply px-1 py-0 text-sm h-8 rounded-size-md gap-1.5;
@@ -11,13 +11,13 @@ b-tabs {
11
11
  @apply px-2 py-0 text-xs h-6 rounded-size-sm gap-1;
12
12
 
13
13
  &[aria-selected='true'] {
14
- @apply bg-primary-foreground inset-ring-1 inset-ring-primary/10;
15
- @apply dark:bg-primary-foreground-dark dark:inset-ring-primary-dark/10;
14
+ @apply bg-primary/5 text-primary inset-ring-1 inset-ring-primary/20;
15
+ @apply dark:bg-primary-dark/5 dark:text-primary-dark dark:inset-ring-primary-dark/30;
16
16
  }
17
17
 
18
18
  &:hover:not(.cdk-option-active) {
19
- @apply bg-primary-foreground/70 hover:cursor-pointer;
20
- @apply dark:bg-primary-foreground-dark/70;
19
+ @apply bg-primary/5 hover:cursor-pointer;
20
+ @apply dark:bg-primary-dark/5;
21
21
  }
22
22
  }
23
23