@onereach/styles 16.1.2 → 16.2.0-beta.4757.0

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/base.layer.css CHANGED
@@ -1,8 +1,18 @@
1
1
  @layer base {
2
2
 
3
+ .light-scheme {
4
+ color-scheme: only light;
5
+ }
6
+
7
+ .dark-scheme {
8
+ color-scheme: only dark;
9
+ }
10
+
3
11
  body {
4
12
  @apply text-on-background dark:text-on-background-dark;
5
- @apply typography-body-1-regular
13
+ @apply typography-body-1-regular;
14
+ @apply light-scheme dark:dark-scheme;
15
+
6
16
  }
7
17
 
8
18
  }
package/main-v3.css CHANGED
@@ -4,6 +4,5 @@
4
4
 
5
5
  @import "tokens-v3.css";
6
6
  @import "font.css";
7
- @import "scrollbar.css";
8
7
 
9
8
  @import "base.layer.css";
package/main.css CHANGED
@@ -4,7 +4,6 @@
4
4
 
5
5
  @import "tokens-v3.css";
6
6
  @import "font.css";
7
- @import "scrollbar.css";
8
7
 
9
8
  @import "base.layer.css";
10
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/styles",
3
- "version": "16.1.2",
3
+ "version": "16.2.0-beta.4757.0",
4
4
  "description": "Styles for or-ui-next",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./main.css",
@@ -60,6 +60,5 @@
60
60
  },
61
61
  "publishConfig": {
62
62
  "access": "public"
63
- },
64
- "gitHead": "46d18e60986abccd4e32d4af67692a9e64991514"
63
+ }
65
64
  }