A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 _st-theme.scss

View raw Download
text/plain • 587 B
ASCII text
        
            
1
@use "theme";
2
3
//
4
// Override sizes
5
//
6
7
$menuitem-size: 32px;
8
$panel-button-hpadding: 12px;
9
10
@if theme.$compact {
11
$menuitem-size: 28px;
12
$panel-button-hpadding: 8px;
13
}
14
15
//
16
// Override durations; since St does not support transition-timing-function
17
//
18
19
$duration: 100ms;
20
$duration-ripple: 200ms;
21
$duration-panel: 250ms;
22
23
//
24
// Override shadows
25
//
26
27
// This should be none, but it's creating some issues with borders, so to
28
// workaround it for now, use inset wich goes through a different code path.
29
// see https://bugzilla.gnome.org/show_bug.cgi?id=752934
30
$shadow-z0: 0 0 transparent;
31