From f1b7c08a09501b79c31548a1fd6ba5fc4539dcb0 Mon Sep 17 00:00:00 2001 From: Aswin Vayiravan Date: Fri, 11 Dec 2020 18:55:22 -0500 Subject: [PATCH] changed to colour names instead of hex codes for readability (#5772) --- .../examples/03-logic/04-keyed-each-blocks/App.svelte | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/site/content/examples/03-logic/04-keyed-each-blocks/App.svelte b/site/content/examples/03-logic/04-keyed-each-blocks/App.svelte index 2868f90536..b4f300668c 100644 --- a/site/content/examples/03-logic/04-keyed-each-blocks/App.svelte +++ b/site/content/examples/03-logic/04-keyed-each-blocks/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() {