43 lines
630 B
CSS
43 lines
630 B
CSS
:root {
|
|
--background: #f5f5f5;
|
|
--foreground: #ebebeb;
|
|
--text: #1a1a1a;
|
|
--border: #e8e8e8;
|
|
--tag-background: rgba(153, 153, 153, 0.2);
|
|
--tag-color: #3b5bdb;
|
|
--error: #c7254e;
|
|
--warning: #996800;
|
|
--success: #2d7f3e;
|
|
}
|
|
|
|
* {
|
|
font-family: "SF Pro Display", sans-serif;
|
|
}
|
|
|
|
window:not(#backdrop) {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.tile {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.tag {
|
|
border-radius: 0;
|
|
}
|
|
|
|
#shortcut-holder {
|
|
border-radius: 0;
|
|
}
|
|
|
|
#context-menu {
|
|
border-radius: 0;
|
|
}
|
|
|
|
image.reactive {
|
|
-gtk-icon-filter: brightness(0);
|
|
}
|
|
|
|
#search-icon-holder image {
|
|
-gtk-icon-filter: brightness(0);
|
|
}
|