@hazae41/labase 1.0.29 → 1.0.30

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,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@hazae41/labase",
4
- "version": "1.0.29",
4
+ "version": "1.0.30",
5
5
  "description": "The Tailwind framework for monochrome apps",
6
6
  "repository": "github:hazae41/labase",
7
7
  "author": "hazae41",
@@ -23,10 +23,12 @@
23
23
  }
24
24
 
25
25
  @utility border-opposite-contrast {
26
- @apply border-white/80;
26
+ /* strong dark on light */
27
+ @apply border-black/80;
27
28
 
28
29
  @variant dark {
29
- @apply border-black/90;
30
+ /* strong light on dark */
31
+ @apply border-white/90;
30
32
  }
31
33
  }
32
34
 
@@ -23,9 +23,9 @@
23
23
  }
24
24
 
25
25
  @utility outline-opposite-contrast {
26
- @apply outline-white/80;
26
+ @apply outline-black/80;
27
27
 
28
28
  @variant dark {
29
- @apply outline-black/90;
29
+ @apply outline-white/90;
30
30
  }
31
31
  }