Experimenting a bit with USE, and noticed that the...
# datascience
p
Experimenting a bit with USE, and noticed that the notebook instance now has currentColorScheme property.
Copy code
USE {
    println(notebook.currentColorScheme)   
}
However this seems to always return LIGHT, even if I set the Jupyter Lab to “dark” and even restart the notebook. Is this just a property you set yourself and not derived from the Jupyter Lab environment, or something else I’m missing? TIA!!!
i
Doc is missing, my bad. This property works correctly only in Kotlin Notebook for now, it's changed there under the hood if you change the IDE color scheme
p
Very informative notebook, thanks!!!