Chore: Update ContentView template to use palette colors

This commit is contained in:
phranck
2026-02-08 17:03:52 +01:00
parent 9786ee36b7
commit fb3effdf48
+2 -2
View File
@@ -175,11 +175,11 @@ struct ContentView: View {
var body: some View {
VStack {
Text("Hello, TUIkit!")
.foregroundStyle(.green)
.foregroundStyle(.palette.accent)
.bold()
Text("Welcome to your new terminal app")
.foregroundStyle(.gray)
.foregroundStyle(.palette.foregroundSecondary)
}
.padding()
}