38 lines
564 B
CSS
38 lines
564 B
CSS
/* ---------------------------
|
|
Default Waybar Styling
|
|
--------------------------- */
|
|
|
|
/* General bar */
|
|
#waybar {
|
|
background-color: #222222; /* Default dark gray bar */
|
|
color: #ffffff; /* Default text color */
|
|
}
|
|
|
|
/* Modules */
|
|
.module {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
/* Hover effect (minimal) */
|
|
.module:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* Separators */
|
|
.separator {
|
|
margin: 0 2px;
|
|
}
|
|
|
|
/* Popups */
|
|
.popup {
|
|
background-color: #333333;
|
|
color: #ffffff;
|
|
border-radius: 4px;
|
|
padding: 4px 6px;
|
|
}
|
|
|
|
/* Icons */
|
|
i {
|
|
margin-right: 2px;
|
|
}
|