Skip to content

Commit 2bdaf63

Browse files
committed
make alarm red brighter
1 parent 649fa74 commit 2bdaf63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/Block.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default function Block({
6666
<div className="flex justify-between">
6767
<span
6868
id={pv.human_readable_name + "_VALUE"}
69-
className={pv.severity != "NONE" ? "text-red-600" : ""}
69+
className={pv.severity != "NONE" ? "text-red-400" : ""}
7070
>
7171
{showAdvanced && "Readback: "}
7272
{pv.value} {pv.units != null && pv.units}
@@ -88,7 +88,7 @@ export default function Block({
8888
{pv.severity != "NONE" ? (
8989
<a
9090
href="https://github.com/ISISComputingGroup/ibex_user_manual/wiki/Blocks#alarms"
91-
className="text-red-600"
91+
className="text-red-400"
9292
>
9393
Alarm: {pv.severity}
9494
</a>

0 commit comments

Comments
 (0)