Help HDK date_time_clock.star color AM/PM

Maybe someone can help Im hosting the date_time_clock.star locally but really need some help as I would like the AM/PM indicator to be 666 not FFF. hence the AM/PM indicator much less bright, anyone have any idea how todo that?

I already altered the date and day lines to better colors not just the white.

code sampleing:
return render.Root(
delay = 500,
max_age = 120,
child = render.Column(
expanded = True,
cross_align = “center”,
children = [
render.Box(width = 64, height = 1),
render.Animation(
children = [
render.Text(
content = now.format(time_format_separator),
font = “6x13”,
),
render.Text(
content = now.format(time_format_no_separator),
font = “6x13”,
),
],
),
render.Text(
content = day,
color = “66F”,
),
render.Text(
content = now_date,
color = “666”,
font = “5x8”,
),
render.Box(width = 64, height = 1),
render.Box(width = 64, height = 1),
],
),