I am trying to design a dash app and am trying to use dash_bootstrap_components themes. I am able to use some themes like LUMEN but when I want to use the theme ZEPHYR I am getting the following error -
AttributeError: module 'dash_bootstrap_components.themes' has no attribute 'ZEPHYR'
This is the relevant code -
import pandas as pd
import numpy as np
from dash import dcc
from dash import html
from jupyter_dash import JupyterDash
from dash.dependencies import Output, Input, State
import dash_bootstrap_components as dbc
import dash
from dash.dependencies import Input, Output, State
from dash import dcc, html, dash_table
font_awesome_url = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'
app = JupyterDash(__name__,
external_stylesheets=[dbc.themes.ZEPHYR,font_awesome_url],
#meta_tags=[{'name': 'viewport','content': 'width=device-width, initial-scale=1.0'}],
prevent_initial_callbacks=True,
suppress_callback_exceptions=True
#assets_folder=assets_path
)
Why is this happening?