Skip to content

Commit

Permalink
400 was the brand key colour previously, now 500
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-matt-hillsdon committed Dec 12, 2023
1 parent b3ee6f8 commit 76fb49b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/simulator/CompassModule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const CompassModule = ({
<Icon
ref={ref}
as={CompassHeadingIcon}
color="brand2.400"
color="brand2.500"
boxSize="20"
/>
</HStack>
Expand Down
14 changes: 7 additions & 7 deletions src/simulator/SimulatorModules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ const ModuleForId = ({
return (
<RangeSensor
id={id}
icon={<Icon as={icons[id]} color="brand2.400" boxSize="6" />}
icon={<Icon as={icons[id]} color="brand2.500" boxSize="6" />}
key={id}
title={title}
sensor={state[id] as RangeSensorType}
Expand All @@ -279,7 +279,7 @@ const ModuleForId = ({
return (
<ButtonsModule
key={id}
icon={<Icon as={icons[id]} color="brand2.400" boxSize="6" />}
icon={<Icon as={icons[id]} color="brand2.500" boxSize="6" />}
state={state}
onValueChange={onValueChange}
running={running}
Expand All @@ -290,7 +290,7 @@ const ModuleForId = ({
return (
<PinsModule
key={id}
icon={<Icon as={icons[id]} color="brand2.400" boxSize="6" />}
icon={<Icon as={icons[id]} color="brand2.500" boxSize="6" />}
state={state}
onValueChange={onValueChange}
running={running}
Expand All @@ -301,7 +301,7 @@ const ModuleForId = ({
return (
<DataLoggingModule
key={id}
icon={<Icon as={icons[id]} color="brand2.400" boxSize="6" />}
icon={<Icon as={icons[id]} color="brand2.500" boxSize="6" />}
logFull={state.dataLogging.logFull}
minimised={minimised}
/>
Expand All @@ -310,7 +310,7 @@ const ModuleForId = ({
return (
<AccelerometerModule
key={id}
icon={<Icon as={icons[id]} color="brand2.400" boxSize="6" />}
icon={<Icon as={icons[id]} color="brand2.500" boxSize="6" />}
state={state}
onValueChange={onValueChange}
running={running}
Expand All @@ -321,7 +321,7 @@ const ModuleForId = ({
return (
<CompassModule
key={id}
icon={<Icon as={icons[id]} color="brand2.400" boxSize="6" />}
icon={<Icon as={icons[id]} color="brand2.500" boxSize="6" />}
state={state}
onValueChange={onValueChange}
minimised={minimised}
Expand All @@ -331,7 +331,7 @@ const ModuleForId = ({
return (
<RadioModule
key={id}
icon={<Icon as={icons[id]} color="brand2.400" boxSize="6" />}
icon={<Icon as={icons[id]} color="brand2.500" boxSize="6" />}
enabled={state.radio.enabled}
group={state.radio.group}
minimised={minimised}
Expand Down

0 comments on commit 76fb49b

Please sign in to comment.