tailwindcss 4.0.0-beta.6 → 4.0.0-beta.7

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/index.css CHANGED
@@ -435,6 +435,8 @@
435
435
  --perspective-midrange: 800px;
436
436
  --perspective-distant: 1200px;
437
437
 
438
+ --aspect-video: 16 / 9;
439
+
438
440
  --default-transition-duration: 150ms;
439
441
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
440
442
  --default-font-family: var(--font-sans);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss",
3
- "version": "4.0.0-beta.6",
3
+ "version": "4.0.0-beta.7",
4
4
  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,6 +41,10 @@
41
41
  "require": "./dist/colors.js",
42
42
  "import": "./dist/colors.mjs"
43
43
  },
44
+ "./lib/util/flattenColorPalette": {
45
+ "require": "./dist/flatten-color-palette.js",
46
+ "import": "./dist/flatten-color-palette.mjs"
47
+ },
44
48
  "./package.json": "./package.json",
45
49
  "./index.css": "./index.css",
46
50
  "./index": "./index.css",
@@ -67,7 +71,7 @@
67
71
  "@types/node": "^20.14.8",
68
72
  "lightningcss": "^1.26.0",
69
73
  "dedent": "1.5.3",
70
- "@tailwindcss/oxide": "4.0.0-beta.6"
74
+ "@tailwindcss/oxide": "4.0.0-beta.7"
71
75
  },
72
76
  "scripts": {
73
77
  "lint": "tsc --noEmit",
package/theme.css CHANGED
@@ -429,6 +429,8 @@
429
429
  --perspective-midrange: 800px;
430
430
  --perspective-distant: 1200px;
431
431
 
432
+ --aspect-video: 16 / 9;
433
+
432
434
  --default-transition-duration: 150ms;
433
435
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
434
436
  --default-font-family: var(--font-sans);