@vaadin/vaadin-lumo-styles 23.0.4 → 23.1.0-alpha2

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.
Files changed (3) hide show
  1. package/color.js +2 -0
  2. package/package.json +4 -4
  3. package/version.js +1 -1
package/color.js CHANGED
@@ -158,11 +158,13 @@ const color = css`
158
158
  html {
159
159
  color: var(--lumo-body-text-color);
160
160
  background-color: var(--lumo-base-color);
161
+ color-scheme: light;
161
162
  }
162
163
 
163
164
  [theme~='dark'] {
164
165
  color: var(--lumo-body-text-color);
165
166
  background-color: var(--lumo-base-color);
167
+ color-scheme: dark;
166
168
  }
167
169
 
168
170
  h1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-lumo-styles",
3
- "version": "23.0.4",
3
+ "version": "23.1.0-alpha2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -42,8 +42,8 @@
42
42
  "@polymer/iron-icon": "^3.0.0",
43
43
  "@polymer/iron-iconset-svg": "^3.0.0",
44
44
  "@polymer/polymer": "^3.0.0",
45
- "@vaadin/icon": "^23.0.4",
46
- "@vaadin/vaadin-themable-mixin": "^23.0.4"
45
+ "@vaadin/icon": "23.1.0-alpha2",
46
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha2"
47
47
  },
48
48
  "devDependencies": {
49
49
  "gulp": "^4.0.2",
@@ -52,5 +52,5 @@
52
52
  "gulp-sort": "^2.0.0",
53
53
  "gulp-svgmin": "^4.1.0"
54
54
  },
55
- "gitHead": "d8db2046661c42fb5aac09ed683b500bf4613b26"
55
+ "gitHead": "6842dcb8b163d4512fae8d3d12a6559077a4aee6"
56
56
  }
package/version.js CHANGED
@@ -5,7 +5,7 @@
5
5
  */
6
6
  class Lumo extends HTMLElement {
7
7
  static get version() {
8
- return '23.0.4';
8
+ return '23.1.0-alpha2';
9
9
  }
10
10
  }
11
11