@jupyterlab/theme-light-extension 3.3.0-alpha.6 → 4.0.0-alpha.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": "@jupyterlab/theme-light-extension",
3
- "version": "3.3.0-alpha.6",
3
+ "version": "4.0.0-alpha.1",
4
4
  "description": "JupyterLab - Default Light Theme",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -31,9 +31,9 @@
31
31
  "watch": "tsc -b --watch"
32
32
  },
33
33
  "dependencies": {
34
- "@jupyterlab/application": "^3.3.0-alpha.6",
35
- "@jupyterlab/apputils": "^3.3.0-alpha.6",
36
- "@jupyterlab/translation": "^3.3.0-alpha.6"
34
+ "@jupyterlab/application": "^4.0.0-alpha.1",
35
+ "@jupyterlab/apputils": "^4.0.0-alpha.1",
36
+ "@jupyterlab/translation": "^4.0.0-alpha.1"
37
37
  },
38
38
  "devDependencies": {
39
39
  "rimraf": "~3.0.0",
@@ -109,8 +109,9 @@ all of MD as it is not optimized for dense, information rich UIs.
109
109
  --jp-ui-font-size2: 1.2em;
110
110
  --jp-ui-font-size3: 1.44em;
111
111
 
112
- --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,
113
- Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
112
+ --jp-ui-font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
113
+ Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
114
+ 'Segoe UI Symbol';
114
115
 
115
116
  /*
116
117
  * Use these font colors against the corresponding main layout colors.
@@ -167,9 +168,9 @@ all of MD as it is not optimized for dense, information rich UIs.
167
168
 
168
169
  --jp-content-link-color: var(--md-blue-700);
169
170
 
170
- --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
171
- Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
172
- 'Segoe UI Symbol';
171
+ --jp-content-font-family: system-ui, -apple-system, BlinkMacSystemFont,
172
+ 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
173
+ 'Segoe UI Emoji', 'Segoe UI Symbol';
173
174
 
174
175
  /*
175
176
  * Code Fonts
@@ -389,4 +390,17 @@ all of MD as it is not optimized for dense, information rich UIs.
389
390
  --jp-icon-contrast-color1: var(--md-green-600);
390
391
  --jp-icon-contrast-color2: var(--md-pink-600);
391
392
  --jp-icon-contrast-color3: var(--md-blue-600);
393
+
394
+ /* Button colors */
395
+ --jp-accept-color-normal: var(--md-blue-700);
396
+ --jp-accept-color-hover: var(--md-blue-800);
397
+ --jp-accept-color-active: var(--md-blue-900);
398
+
399
+ --jp-warn-color-normal: var(--md-red-700);
400
+ --jp-warn-color-hover: var(--md-red-800);
401
+ --jp-warn-color-active: var(--md-red-900);
402
+
403
+ --jp-reject-color-normal: var(--md-grey-600);
404
+ --jp-reject-color-hover: var(--md-grey-700);
405
+ --jp-reject-color-active: var(--md-grey-800);
392
406
  }