nichts/hosts/dragyx/common/theming/waybar-style.css

61 lines
1.3 KiB
CSS
Raw Normal View History

2024-04-29 13:17:46 +02:00
@import "catppuccin.css";
2024-04-14 22:14:28 +02:00
/* Reset all styles */
* {
min-height: 0;
margin: 0;
padding: 0;
box-shadow: none;
text-shadow: none;
-gtk-icon-shadow: none;
}
/* The whole bar */
#waybar {
background: rgba(0, 0, 0, 0);
/*background-image: linear-gradient(to left, rgba(255, 100, 100, 100), rgba(255, 100, 100, 0));*/
2024-04-29 13:17:46 +02:00
/* background: linear-gradient(90deg, @rosewater 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0) 75%, @teal 100%); */
color: @text;
2024-04-14 22:14:28 +02:00
font-family: JetBrains Mono;
font-size: 13pt;
}
2024-04-29 13:17:46 +02:00
#widget {
background: @base;
2024-04-14 22:14:28 +02:00
}
#workspaces button {
2024-04-29 13:17:46 +02:00
margin: 0 5px;
padding: 2px 3px 0 3px;
border-width: 0 0 2px 0;
border-color: @pink;
border-style: solid;
color: @text;
border-radius: 0;
background-color: transparent;
2024-04-14 22:14:28 +02:00
}
#workspaces button.active {
2024-04-29 13:17:46 +02:00
background-color: @crust;
border-color: @yellow;
2024-04-14 22:14:28 +02:00
}
2024-04-29 13:17:46 +02:00
#workspaces button:hover {
background-color: @crust;
box-shadow: none;
text-shadow: none;
box-shadow: none; /* Remove predefined box-shadow */
text-shadow: none; /* Remove predefined text-shadow */
background: none; /* Remove predefined background color (white) */
transition: none; /* Disable predefined animations */
2024-04-14 22:14:28 +02:00
}
#workspaces button.focused {
2024-04-29 13:17:46 +02:00
background-color: @crust;
2024-04-14 22:14:28 +02:00
}
#workspaces button.urgent {
2024-04-29 13:17:46 +02:00
background-color: @maroon;
2024-04-14 22:14:28 +02:00
}