1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
3
4Win := Window {
5 property <color> base: #00007F;
6 GridLayout {
7 r := Rectangle {
8 background: base;
9 }
10 Rectangle {
11 background: base.brighter(50%);
12 }
13 Rectangle {
14 background: base.darker(50%);
15 }
16 }
17}
18