// SPDX-FileCopyrightText: 2024 vivi developers // SPDX-License-Identifier: MIT export struct TextStyle { foreground: brush, font_size: relative_font_size, font_weight: int, } export component TextBase inherits Text { in property style; font_size: root.style.font_size; font_weight: root.style.font_weight; color: root.style.foreground; overflow: elide; }