@onereach/styles 2.17.4 → 2.17.5-beta.1187.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.
|
|
3
|
+
"version": "2.17.5-beta.1187.0",
|
|
4
4
|
"description": "Styles for or-ui-next",
|
|
5
5
|
"main": "./main.css",
|
|
6
6
|
"unpkg": "./main.css",
|
|
@@ -49,6 +49,5 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@tailwindcss/typography": "^0.5.4",
|
|
51
51
|
"tailwindcss": "^3.1.3"
|
|
52
|
-
}
|
|
53
|
-
"gitHead": "7927a508687b62416fc4ef0eb86d83b1b5a041ac"
|
|
52
|
+
}
|
|
54
53
|
}
|
|
@@ -589,6 +589,16 @@
|
|
|
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"
|
|
592
602
|
}
|
|
593
603
|
],
|
|
594
604
|
"Gradients": [],
|
package/tokens.css
CHANGED
|
@@ -61,6 +61,7 @@
|
|
|
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);
|
|
64
65
|
}
|
|
65
66
|
[data-theme="dark-mode"], [data-theme="dark"] {
|
|
66
67
|
--or-c-primary: rgba(164,200,255,1);
|
|
@@ -121,4 +122,5 @@
|
|
|
121
122
|
--or-c-warning-opacity-0-08: rgba(251,188,12,0.08);
|
|
122
123
|
--or-c-warning-opacity-0-12: rgba(251,188,12,0.12);
|
|
123
124
|
--or-c-warning-opacity-0-16: rgba(251,188,12,0.16);
|
|
125
|
+
--or-c-overlay: rgba(27,27,29,0.8);
|
|
124
126
|
}
|