Simple Toolbars. Just Html, CSS and Javascript pure (without Jquery).
Sometimes we do not want to use a framework to create only one component
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/icons.css">
<link rel="stylesheet" href="css/component.css"><header class="toolbar">
<section>
<button class="touch">
<i class="icon arrow_back"></i>
</button>
</section>
<section class="title">
Settings
</section>
<section>
<button>
<i class="icon search"></i>
</button>
<button>
<i class="icon more_vert"></i>
</button>
</section>
</header><link rel="stylesheet" href="css/theme-blue.css"><link rel="stylesheet" href="css/theme-blue-gray.css"><link rel="stylesheet" href="css/theme-blue-red.css"><link rel="stylesheet" href="css/theme-blue-black.css">Simply overwrite the tag element CSS
.toolbar{
background: #212121;
color: rgba(255, 255, 255, 0.87);
}
.icon{
color: rgba(255, 255, 255, 0.87);
}
.effect-wave {
background: rgba(255,255,255,0.45);
}<script src="effects.js"></script>Win \o/