@jupyterlab/theme-light-extension 4.3.0-alpha.2 → 4.3.0-beta.0
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 +4 -4
- package/style/variables.css +16 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/theme-light-extension",
|
|
3
|
-
"version": "4.3.0-
|
|
3
|
+
"version": "4.3.0-beta.0",
|
|
4
4
|
"description": "JupyterLab - Default Light Theme",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"watch": "tsc -b --watch"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@jupyterlab/application": "^4.3.0-
|
|
36
|
-
"@jupyterlab/apputils": "^4.4.0-
|
|
37
|
-
"@jupyterlab/translation": "^4.3.0-
|
|
35
|
+
"@jupyterlab/application": "^4.3.0-beta.0",
|
|
36
|
+
"@jupyterlab/apputils": "^4.4.0-beta.0",
|
|
37
|
+
"@jupyterlab/translation": "^4.3.0-beta.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"rimraf": "~5.0.5",
|
package/style/variables.css
CHANGED
|
@@ -422,3 +422,19 @@ all of MD as it is not optimized for dense, information rich UIs.
|
|
|
422
422
|
--jp-switch-color: var(--md-grey-400, #bdbdbd);
|
|
423
423
|
--jp-switch-true-position-color: var(--md-orange-900, #e65100);
|
|
424
424
|
}
|
|
425
|
+
|
|
426
|
+
/* Completer specific styles */
|
|
427
|
+
|
|
428
|
+
.jp-Completer {
|
|
429
|
+
--jp-completer-type-background0: transparent;
|
|
430
|
+
--jp-completer-type-background1: #1f77b4;
|
|
431
|
+
--jp-completer-type-background2: #ff7f0e;
|
|
432
|
+
--jp-completer-type-background3: #2ca02c;
|
|
433
|
+
--jp-completer-type-background4: #d62728;
|
|
434
|
+
--jp-completer-type-background5: #9467bd;
|
|
435
|
+
--jp-completer-type-background6: #8c564b;
|
|
436
|
+
--jp-completer-type-background7: #e377c2;
|
|
437
|
+
--jp-completer-type-background8: #7f7f7f;
|
|
438
|
+
--jp-completer-type-background9: #bcbd22;
|
|
439
|
+
--jp-completer-type-background10: #17becf;
|
|
440
|
+
}
|