@onsvisual/svelte-components 1.0.6 → 1.0.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.
@@ -77,7 +77,7 @@
77
77
  export let background = null;
78
78
  </script>
79
79
 
80
- <Theme theme={theme === "blue" ? null : theme} overrides={themeOverrides} {background}>
80
+ <Theme {theme} overrides={themeOverrides} {background}>
81
81
  <section
82
82
  class="ons-hero {cls}"
83
83
  class:ons-hero--pale-blue={theme === "paleblue"}
@@ -351,6 +351,7 @@
351
351
  flex-direction: column;
352
352
  justify-content: center;
353
353
  }
354
+
354
355
  /* Allow a hero with a transparent background */
355
356
  .ons-hero--transparent {
356
357
  background: none;
@@ -38,9 +38,9 @@ const dark = {
38
38
  "--ons-color-text-link-hover": "--ons-color-grey-5",
39
39
  "--ons-color-text-link-active": "--ons-color-grey-5",
40
40
  "--ons-color-text-link-focus": "--ons-color-black",
41
- "--ons-color-text-inverse": "--ons-color-black",
42
- "--ons-color-text-inverse-link": "--ons-color-ocean-blue",
43
- "--ons-color-text-inverse-link-hover": "--ons-color-night-blue",
41
+ "--ons-color-text-inverse": "--ons-color-white",
42
+ "--ons-color-text-inverse-link": "--ons-color-white",
43
+ "--ons-color-text-inverse-link-hover": "--ons-color-grey-5",
44
44
  "--ons-color-text-banner-link": "--ons-color-grey-5",
45
45
  "--ons-color-text-banner-link-hover": "--ons-color-white",
46
46
  "--ons-color-text-metadata": "--ons-color-white",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onsvisual/svelte-components",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "npm run build:package && npm run build:docs",