@onereach/styles 2.17.5-beta.1189.0 → 2.17.5-beta.1190.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/styles",
3
- "version": "2.17.5-beta.1189.0",
3
+ "version": "2.17.5-beta.1190.0",
4
4
  "description": "Styles for or-ui-next",
5
5
  "main": "./main.css",
6
6
  "unpkg": "./main.css",
@@ -589,16 +589,6 @@
589
589
  "name": "dark-warning-opacity-0-16",
590
590
  "value": "rgba(251,188,12,0.16)",
591
591
  "groupName": "dark/warning/opacity-0.16"
592
- },
593
- {
594
- "name": "light-overlay",
595
- "value": "rgba(27,27,29,0.8)",
596
- "groupName": "light/overlay"
597
- },
598
- {
599
- "name": "dark-overlay",
600
- "value": "rgba(27,27,29,0.8)",
601
- "groupName": "dark/overlay"
602
592
  }
603
593
  ],
604
594
  "Gradients": [],
@@ -205,6 +205,9 @@ module.exports = {
205
205
  addVariant('valid', ['&:valid', '&:not([invalid])']);
206
206
  addVariant('invalid', ['&:invalid', '&[invalid]']);
207
207
 
208
+ addVariant('readwrite', ['&:read-write', '&:not([readonly])']);
209
+ addVariant('readonly', ['&:read-only', '&[readonly]']);
210
+
208
211
  addVariant('checked', [
209
212
  '&[type="checkbox"]:checked:not(:indeterminate)',
210
213
  '&[type="radio"]:checked',
package/tokens.css CHANGED
@@ -61,7 +61,6 @@
61
61
  --or-c-warning-opacity-0-08: rgba(153,112,0,0.08);
62
62
  --or-c-warning-opacity-0-12: rgba(153,112,0,0.12);
63
63
  --or-c-warning-opacity-0-16: rgba(153,112,0,0.16);
64
- --or-c-overlay: rgba(27,27,29,0.8);
65
64
  }
66
65
  [data-theme="dark-mode"], [data-theme="dark"] {
67
66
  --or-c-primary: rgba(164,200,255,1);
@@ -122,5 +121,4 @@
122
121
  --or-c-warning-opacity-0-08: rgba(251,188,12,0.08);
123
122
  --or-c-warning-opacity-0-12: rgba(251,188,12,0.12);
124
123
  --or-c-warning-opacity-0-16: rgba(251,188,12,0.16);
125
- --or-c-overlay: rgba(27,27,29,0.8);
126
124
  }