vueless 1.4.10-beta.0 → 1.4.10-beta.1

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": "vueless",
3
- "version": "1.4.10-beta.0",
3
+ "version": "1.4.10-beta.1",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
@@ -25,23 +25,23 @@ To customize the default `vueless` or your own custom theme, simply update your
25
25
 
26
26
  <Source code={`
27
27
  .tippy-box[data-theme~="custom"] {
28
- background-color: var(--vl-neutral-accented);
28
+ background-color: var(--vl-bg-inverted);
29
29
  color: var(--vl-text-inverted);
30
30
  }
31
-
31
+
32
32
  .tippy-box[data-theme~="custom"][data-placement^="top"] > .tippy-arrow:before {
33
- border-top-color: var(--vl-neutral-accented);
33
+ border-top-color: var(--vl-bg-inverted);
34
34
  }
35
-
35
+
36
36
  .tippy-box[data-theme~="custom"][data-placement^="bottom"] > .tippy-arrow:before {
37
- border-bottom-color: var(--vl-neutral-accented);
37
+ border-bottom-color: var(--vl-bg-inverted);
38
38
  }
39
-
39
+
40
40
  .tippy-box[data-theme~="custom"][data-placement^="left"] > .tippy-arrow:before {
41
- border-left-color: var(--vl-neutral-accented);
41
+ border-left-color: var(--vl-bg-inverted);
42
42
  }
43
-
43
+
44
44
  .tippy-box[data-theme~="custom"][data-placement^="right"] > .tippy-arrow:before {
45
- border-right-color: var(--vl-neutral-accented);
45
+ border-right-color: var(--vl-bg-inverted);
46
46
  }
47
47
  `} language="jsx" dark />