Hi @corrieann @craigcitro @CSEMike Thanks for Colab, it's wonderful and indispensable. Just wanted to share this issue:
Since code cells have a black background vs text cells, which have a dark grey one, some of the inline code colors for modules, functions, etc render/appear barely visible/comprehesible:
While in Colab with the Dark theme enabled
import, as, class, def, return are purple in Markdown鈥攂arely visible
class name (e.g. MyModel), super, call are dark blue against a dark grey background...鈥攂arely visible
The same stuff looks ok against a default black background in code cells.

Try this sample code in Markdown to reproduce the issue:
import tensorflow as tf
# A simple `tf.keras` model
class MyModel(tf.keras.Model):
def __init__(self):
super(MyModel, self).__init__()
self.conv1 = tf.keras.layers.Conv2D(32, 3, activation='relu')
self.flatten = tf.keras.Flatten()
self.dense1 = tf.keras.Dense(128, activation='relu')
self.dense2 = tf.keras.Dense(10, activation='softmax')
def call(self, x):
x = self.conv1(x)
x = self.flatten(x)
x = self.dense1(x)
return self.dense2(x)
model = MyModel()
Potentially changing the default code text colors scheme to accomodate for the dark grey background.
Lighter colors such as those in Atom's Dark Theme https://atom.io/themes/one-dark-ui or PyCharm's dark theme https://plugins.jetbrains.com/plugin/11938-one-dark-theme should be adopted in line with the common standards:
Atom:
PyCharm:

We're working on switching to a different code editing engine which has updated dark mode highlights. Details to enable it can be found at https://colab.research.google.com/notebooks/editor_details.ipynb.

@blois autocomplete, dark mode, etc totally rock 馃憤 Great job team
Most helpful comment
We're working on switching to a different code editing engine which has updated dark mode highlights. Details to enable it can be found at https://colab.research.google.com/notebooks/editor_details.ipynb.