@basis-ng/styles 0.0.1-alpha.172 → 0.0.1-alpha.173

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.172",
3
+ "version": "0.0.1-alpha.173",
4
4
  "description": "CSS foundation for @basis-ng/primitives components",
5
5
  "main": "src/index.css",
6
6
  "exports": {
@@ -16,20 +16,20 @@ b-tabs {
16
16
 
17
17
  /* Selected state */
18
18
  &[aria-selected='true'] {
19
- @apply bg-secondary text-secondary-foreground;
20
- @apply dark:bg-secondary-dark dark:text-secondary-foreground-dark;
19
+ @apply bg-primary text-primary-foreground;
20
+ @apply dark:bg-primary-dark dark:text-primary-foreground-dark;
21
21
  }
22
22
 
23
23
  /* Hover state (not selected) */
24
24
  &:hover:not([aria-selected='true']) {
25
- @apply bg-secondary/10;
26
- @apply dark:bg-secondary-dark/20;
25
+ @apply bg-primary/10;
26
+ @apply dark:bg-primary-dark/20;
27
27
  }
28
28
 
29
29
  /* Focus state */
30
30
  &:focus-visible {
31
- @apply outline-2 outline-offset-2 outline-secondary;
32
- @apply dark:outline-secondary-dark;
31
+ @apply outline-2 outline-offset-2 outline-primary;
32
+ @apply dark:outline-primary-dark;
33
33
  }
34
34
 
35
35
  /* Disabled state */