Solarized Theme

  • Dark background for comfortable viewing
  • Complementary accent colors
  • Clean typography
def fibonacci(n):
    a, b = 0, 1
    for _ in range(n):
        yield a
        a, b = b, a + b

some other slide

image