RenderStyleopen in new window
RenderStyle
は描画する色などのスタイルを表す型です。
通常 CSS Color
open in new window で表せる色情報の文字列リテラルで表します。
現在の Qratch はグラデーションやパターンをサポートされておりません。これらは今後、実装予定です。
サンプル
import { RenderStyle } from 'qratch'
const red: RenderStyle = 'red'
const green: RenderStyle = '#00ff00'
const blue: RenderStyle = 'rgba(0, 0, 255, 1)'
1
2
3
4
5
2
3
4
5