Newer
Older
minerva / Userland / Applications / ThemeEditor / ColorProperty.gml
@minerva minerva on 13 Jul 302 bytes Initial commit
@GUI::Frame {
    layout: @GUI::HorizontalBoxLayout {
        spacing: 4
    }
    preferred_height: "fit"

    @GUI::Label {
        name: "name"
        text: "Some color"
        text_alignment: "CenterLeft"
        fixed_width: 200
    }

    @GUI::ColorInput {
        name: "color_input"
    }
}