Skip to content

Commit

Permalink
Use correct blue color
Browse files Browse the repository at this point in the history
  • Loading branch information
spalmurray-codecov committed May 1, 2024
1 parent 83202d2 commit 6cb29db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/RadioTileGroup/RadioTileGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ const Item = React.forwardRef<
) : null}
</div>
<RadioGroupPrimitive.Indicator className="absolute right-0 top-0 flex h-full w-full justify-end">
<div className="absolute h-full w-full rounded-md border-2 border-ds-blue" />
<div className="h-full w-full rounded-md border border-ds-blue p-4">
<div className="absolute h-full w-full rounded-md border-2 border-ds-blue-darker" />
<div className="h-full w-full rounded-md border border-ds-blue-darker p-4">
<div className="flex h-5 w-full items-center justify-end">
<RadioButtonCircle selected />
</div>
Expand All @@ -87,7 +87,7 @@ export const RadioTileGroup = Object.assign(Group, {

function RadioButtonCircle({ selected = false }: { selected?: boolean }) {
return selected ? (
<div className="flex h-4 w-4 items-center justify-center rounded-full bg-ds-blue">
<div className="flex h-4 w-4 items-center justify-center rounded-full bg-ds-blue-darker">
<div
className="h-1 w-1 rounded-full bg-white "
data-testid="radio-button-circle-selected"
Expand Down

0 comments on commit 6cb29db

Please sign in to comment.