mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
12 lines
262 B
CSS
12 lines
262 B
CSS
@define-color nonexistant @idonotexist;
|
|
|
|
@define-color self @self;
|
|
|
|
@define-color cycle @cycle1;
|
|
@define-color cycle1 @cycle2;
|
|
@define-color cycle2 @cycle1;
|
|
|
|
.background {
|
|
background: linear-gradient(to bottom, @nonexistant, @self, @cycle, @undefinedcolor);
|
|
}
|