@onereach/styles 2.15.2-next.1049.0 → 2.16.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.
@@ -126,8 +126,8 @@ module.exports = {
126
126
  },
127
127
 
128
128
  boxShadow: {
129
- 'generic': '0 1px 1px rgba(0 0 0 / 0.24), 0 0 1px rgba(0 0 0 / 0.16)',
130
129
  ...parseBoxShadowTokens(boxShadowTokens),
130
+ 'base': '0 1px 1px rgba(0 0 0 0.24), 0 0 1px rgba(0 0 0 0.16)',
131
131
  },
132
132
 
133
133
  fontFamily: {
@@ -147,8 +147,6 @@ module.exports = {
147
147
  'inherit': 'inherit',
148
148
  },
149
149
 
150
- letterSpacing: false,
151
-
152
150
  lineHeight: {
153
151
  'inherit': 'inherit',
154
152
  },
package/tokens.css CHANGED
@@ -50,11 +50,17 @@
50
50
  --or-c-primary-hover: rgba(0,119,220,1);
51
51
  --or-c-error-hover: rgba(221,55,48,1);
52
52
  --or-c-success-hover: rgba(56,166,0,1);
53
- --or-c-warning-hover: rgba(153,112,0,1);
53
+ --or-c-warning-hover: rgba(186,137,0,1);
54
54
  --or-c-error-opacity-0-08: rgba(186,27,27,0.08);
55
55
  --or-c-error-opacity-0-12: rgba(186,27,27,0.12);
56
56
  --or-c-error-opacity-0-16: rgba(186,27,27,0.16);
57
57
  --or-c-disabled: rgba(27,27,29,0.12);
58
+ --or-c-success-opacity-0-08: rgba(44,137,0,0.08);
59
+ --or-c-success-opacity-0-12: rgba(44,137,0,0.12);
60
+ --or-c-success-opacity-0-16: rgba(44,137,0,0.16);
61
+ --or-c-warning-opacity-0-08: rgba(153,112,0,0.08);
62
+ --or-c-warning-opacity-0-12: rgba(153,112,0,0.12);
63
+ --or-c-warning-opacity-0-16: rgba(153,112,0,0.16);
58
64
  }
59
65
  [data-theme="dark-mode"], [data-theme="dark"] {
60
66
  --or-c-primary: rgba(164,200,255,1);
@@ -109,4 +115,10 @@
109
115
  --or-c-error-opacity-0-12: rgba(255,180,169,0.12);
110
116
  --or-c-error-opacity-0-16: rgba(255,180,169,0.16);
111
117
  --or-c-disabled: rgba(227,226,230,0.12);
118
+ --or-c-success-opacity-0-08: rgba(108,224,54,0.08);
119
+ --or-c-success-opacity-0-12: rgba(108,224,54,0.12);
120
+ --or-c-success-opacity-0-16: rgba(108,224,54,0.16);
121
+ --or-c-warning-opacity-0-08: rgba(251,188,12,0.08);
122
+ --or-c-warning-opacity-0-12: rgba(251,188,12,0.12);
123
+ --or-c-warning-opacity-0-16: rgba(251,188,12,0.16);
112
124
  }