hyprshell 4.9.5

A modern GTK4-based window switcher and application launcher for Hyprland
/* no opacity */
* {
    opacity: unset;
}

/* buttons need to be transparent as they wrap everything clickable */
button {
    background: none;
    padding: 0;
    margin: 0;
    border: none;
}

frame {
    border: none;
}

image {
    border: none;
}

/* no background and no hover effects by default */
list {
    background: transparent;
}

/* no background and no hover effects by default */
row {
    background: transparent;
}

entry {
    background: transparent;
    color: var(--text-color, rgba(245, 245, 245, 1));
}

label {
    padding-top: 2px;
    color: var(--text-color, rgba(245, 245, 245, 1));
}

/* fix size for icons in launcher */
.large-icons {
    -gtk-icon-size: 32px;
}

/* some fix for the workspaces? */
flowboxchild {
    padding: 2px;
}

.monochrome {
    filter: grayscale(100%);
}

.underline {
    text-decoration-line: underline;
    text-decoration-style: wavy;
}

.text-grayed {
    color: color-mix(in srgb, currentColor 40%, #464444 60%);
}

tooltip {
    font-size: 1rem;
    padding: 5px;
    background: var(--bg-color, rgba(20, 20, 20, 0.9));
    border-radius: var(--border-radius, 12px);
    border: 2px dashed var(--border-color, rgba(90, 90, 120, 0.4));
}

/* window text color */
.window {
    color: var(--text-color, rgba(245, 245, 245, 1));
    /* padding for the window */
    padding: 18px;
}