展示如何在 ArkUI 中使用色彩:@Entry @Component struct ColorfulUI { build() { Column() { // 使用蓝色作为背景,传达稳定感 Rectangle() .width('100%') .height(200) .backgroundColor(Color.Blue) Text('Welcome!') .fontSize(30) .fontColor(Color.White) // 使用绿色按钮,传达自然和积极的感觉 Button('Click me') .width(150) .height(50) .backgroundColor(Color.Green) .fontColor(Color.White) } } }
展示如何在 ArkUI 中使用色彩: