summaryrefslogtreecommitdiff
path: root/examples/gtk4/simple-bar/js/src/scss/Bar.scss
blob: 86ea85616b1a154e542e31bd7b84ad42037c3d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// https://gitlab.gnome.org/GNOME/gtk/-/blob/gtk-4-16/gtk/theme/Default/_colors-public.scss
$fg-color: #{"@theme_fg_color"};
$bg-color: #{"@theme_bg_color"};

window.Bar {
    > box {
        background: $bg-color;
        color: $fg-color;
        font-weight: bold;
    }

    button {
        min-height: 0;
        min-width: 0;
        border-radius: 8px;
        margin: 4px;
        padding: 4px 8px;
    }
}