// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial // widget imports import { Button } from "button.slint"; import { CheckBox } from "checkbox.slint"; import { ScrollView } from "scrollview.slint"; import { Palette } from "styling.slint"; import { Switch } from "switch.slint"; export { Button, CheckBox, ScrollView, Switch } export global StyleMetrics { out property layout-spacing: 16px; out property layout-padding: 16px; out property text-cursor-width: 2px; out property default-text-color: Palette.on-surface; out property textedit-background: transparent; out property textedit-text-color: Palette.on-surface; out property textedit-background-disabled: transparent; out property textedit-text-color-disabled: Palette.on-surface; out property dark-color-scheme: Palette.dark-color-scheme; out property default-font-family: "Roboto"; out property window-background: Palette.background; }