winduum 2.0.0-next.6 → 2.0.0-next.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "winduum",
3
- "version": "2.0.0-next.6",
3
+ "version": "2.0.0-next.7",
4
4
  "type": "module",
5
5
  "types": "types/index.d.ts",
6
6
  "main": "plugin/index.cjs",
package/plugin/index.cjs CHANGED
@@ -116,7 +116,7 @@ const textColor = ({ value, corePlugins }, settings) => {
116
116
  */
117
117
  const tailwindColors = (colors = [], colorMix = true, rgb = false) => {
118
118
  const result = {
119
- current: 'color-mix(in var(--default-color-space), currentcolor calc(<alpha-value> * 100%), transparent)'
119
+ current: 'color-mix(in var(--default-color-space), currentcolor calc(<alpha-value> * 100%), var(--default-color-mix, transparent))'
120
120
  };
121
121
 
122
122
  colors.forEach(name => {
@@ -125,7 +125,7 @@ const tailwindColors = (colors = [], colorMix = true, rgb = false) => {
125
125
  }
126
126
 
127
127
  result[name] = colorMix
128
- ? `color-mix(in var(--default-color-space), var(--color-${name}) calc(<alpha-value> * 100%), transparent)`
128
+ ? `color-mix(in var(--default-color-space), var(--color-${name}) calc(<alpha-value> * 100%), var(--default-color-mix, transparent))`
129
129
  : `rgb(var(--color-${name}) / <alpha-value>)`;
130
130
  });
131
131
 
@@ -6,7 +6,7 @@
6
6
  */
7
7
  export const tailwindColors = (colors = [], colorMix = true, rgb = false) => {
8
8
  const result = {
9
- current: 'color-mix(in var(--default-color-space), currentcolor calc(<alpha-value> * 100%), transparent)'
9
+ current: 'color-mix(in var(--default-color-space), currentcolor calc(<alpha-value> * 100%), var(--default-color-mix, transparent))'
10
10
  }
11
11
 
12
12
  colors.forEach(name => {
@@ -15,7 +15,7 @@ export const tailwindColors = (colors = [], colorMix = true, rgb = false) => {
15
15
  }
16
16
 
17
17
  result[name] = colorMix
18
- ? `color-mix(in var(--default-color-space), var(--color-${name}) calc(<alpha-value> * 100%), transparent)`
18
+ ? `color-mix(in var(--default-color-space), var(--color-${name}) calc(<alpha-value> * 100%), var(--default-color-mix, transparent))`
19
19
  : `rgb(var(--color-${name}) / <alpha-value>)`
20
20
  })
21
21
 
@@ -8,7 +8,7 @@
8
8
  > li {
9
9
  &:not(:last-child)::after {
10
10
  mask: var(--x-breadcrumb-marker);
11
- background-color: var(--x-breadcrumb-background-color, currentColor);
11
+ background-color: var(--x-breadcrumb-marker-background-color, currentColor);
12
12
  margin-inline: var(--x-breadcrumb-gap);
13
13
  inline-size: var(--x-breadcrumb-marker-size);
14
14
  block-size: var(--x-breadcrumb-marker-size);