例スタイリングダークモードダークモードSvelte Flowには、組み込みのライトモードとダークモードが付属しています。 'dark'、'light'、'system' の間で切り替えることができる colorMode プロパティを設定できます。index.htmlApp.svelte<script lang="ts"> const data: string = "world"; </script> <h1>Hello {data}</h1> <style> h1 { font-size: 1.5rem; } </style>読み取り専用Stackblitzで開くCodesandboxで開く機能概要