@tamagui/themes 1.48.10 → 1.49.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.
@@ -1544,7 +1544,7 @@ const vs = [
1544
1544
  "hsl(50, 100%, 48.5%)",
1545
1545
  "hsl(42, 100%, 29.0%)",
1546
1546
  "hsl(40, 55.0%, 13.5%)",
1547
- "rgba(0,0,0,0.1)",
1547
+ "rgba(0,0,0,0.085)",
1548
1548
  "rgba(0,0,0,0.04)",
1549
1549
  "#050505",
1550
1550
  "#151515",
@@ -22,7 +22,7 @@ __export(shadows_exports, {
22
22
  });
23
23
  module.exports = __toCommonJS(shadows_exports);
24
24
  const lightShadowColor = "rgba(0,0,0,0.04)";
25
- const lightShadowColorStrong = "rgba(0,0,0,0.1)";
25
+ const lightShadowColorStrong = "rgba(0,0,0,0.085)";
26
26
  const darkShadowColor = "rgba(0,0,0,0.2)";
27
27
  const darkShadowColorStrong = "rgba(0,0,0,0.3)";
28
28
  const shadows = {
@@ -114,7 +114,7 @@ const vs = [
114
114
  "hsl(50, 100%, 48.5%)",
115
115
  "hsl(42, 100%, 29.0%)",
116
116
  "hsl(40, 55.0%, 13.5%)",
117
- "rgba(0,0,0,0.1)",
117
+ "rgba(0,0,0,0.085)",
118
118
  "rgba(0,0,0,0.04)",
119
119
  "#050505",
120
120
  "#151515",
@@ -1,5 +1,5 @@
1
1
  const lightShadowColor = "rgba(0,0,0,0.04)";
2
- const lightShadowColorStrong = "rgba(0,0,0,0.1)";
2
+ const lightShadowColorStrong = "rgba(0,0,0,0.085)";
3
3
  const darkShadowColor = "rgba(0,0,0,0.2)";
4
4
  const darkShadowColorStrong = "rgba(0,0,0,0.3)";
5
5
  const shadows = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/themes",
3
- "version": "1.48.10",
3
+ "version": "1.49.0",
4
4
  "types": "./types/index.d.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -29,13 +29,13 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@tamagui/colors": "1.48.10",
33
- "@tamagui/create-theme": "1.48.10",
34
- "@tamagui/web": "1.48.10"
32
+ "@tamagui/colors": "1.49.0",
33
+ "@tamagui/create-theme": "1.49.0",
34
+ "@tamagui/web": "1.49.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@tamagui/build": "1.48.10",
38
- "@tamagui/cli": "1.48.10",
37
+ "@tamagui/build": "1.49.0",
38
+ "@tamagui/cli": "1.49.0",
39
39
  "vitest": "^0.26.3"
40
40
  },
41
41
  "publishConfig": {
@@ -246,7 +246,7 @@ const vs = [
246
246
  'hsl(50, 100%, 48.5%)',
247
247
  'hsl(42, 100%, 29.0%)',
248
248
  'hsl(40, 55.0%, 13.5%)',
249
- 'rgba(0,0,0,0.1)',
249
+ 'rgba(0,0,0,0.085)',
250
250
  'rgba(0,0,0,0.04)',
251
251
  '#050505',
252
252
  '#151515',
package/src/shadows.tsx CHANGED
@@ -1,5 +1,5 @@
1
1
  const lightShadowColor = 'rgba(0,0,0,0.04)'
2
- const lightShadowColorStrong = 'rgba(0,0,0,0.1)'
2
+ const lightShadowColorStrong = 'rgba(0,0,0,0.085)'
3
3
  const darkShadowColor = 'rgba(0,0,0,0.2)'
4
4
  const darkShadowColorStrong = 'rgba(0,0,0,0.3)'
5
5