As mentioned in the bzz answer: you can customize the zeppelin user interface. Here are some more details:
Check out the zeppelin source code (e.g. from GitHub https://github.com/apache/zeppelin ). Then:
To set up the first page (βWelcome to Zeppelinβ on it): edit zeppelin-web/src/app/home/home.html
To customize the navigation bar (containing a small zeppelin logo and the word zeppelin): edit zeppelin-web/src/components/navbar/navbar.html
To customize the color scheme zeppelin-web/src/app/home/home.css For the color navbar you need to change the entries for navbar-inverse, but many other elements (for example, the names of the interpreters) use the same color.
After that, you need to rebuild zeppelin mvn clean install -DskipTests (note that you may need to restart your browser).
Christian fries
source share