diff --git a/site/content/tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte b/site/content/tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte index 7cb18e2cda..969114428a 100644 --- a/site/content/tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte +++ b/site/content/tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte @@ -2,11 +2,11 @@ import Thing from './Thing.svelte'; let things = [ - { id: 1, color: '#0d0887' }, - { id: 2, color: '#6a00a8' }, - { id: 3, color: '#b12a90' }, - { id: 4, color: '#e16462' }, - { id: 5, color: '#fca636' } + { id: 1, color: 'darkblue' }, + { id: 2, color: 'indigo' }, + { id: 3, color: 'deeppink' }, + { id: 4, color: 'salmon' }, + { id: 5, color: 'gold' } ]; function handleClick() { @@ -20,4 +20,4 @@ {#each things as thing} -{/each} \ No newline at end of file +{/each} diff --git a/site/content/tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte b/site/content/tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte index 48a2151875..37a19a67a8 100644 --- a/site/content/tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte +++ b/site/content/tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte @@ -2,11 +2,11 @@ import Thing from './Thing.svelte'; let things = [ - { id: 1, color: '#0d0887' }, - { id: 2, color: '#6a00a8' }, - { id: 3, color: '#b12a90' }, - { id: 4, color: '#e16462' }, - { id: 5, color: '#fca636' } + { id: 1, color: 'darkblue' }, + { id: 2, color: 'indigo' }, + { id: 3, color: 'deeppink' }, + { id: 4, color: 'salmon' }, + { id: 5, color: 'gold' } ]; function handleClick() { @@ -20,4 +20,4 @@ {#each things as thing (thing.id)} -{/each} \ No newline at end of file +{/each}