Skip to content

Commit 179fdf8

Browse files
authored
Merge pull request #14868 from JoeChenJ/Switch_layer-2_tagging_color
switch tagging color on layer 2 networks page
2 parents afc5db9 + a9f34ce commit 179fdf8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/Layer2NetworksTable/NetworkMaturityTooltip.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@ const NetworkMaturityTooltip = ({ maturity }: { maturity: MaturityLevel }) => {
1717
description:
1818
"Fully decentralized and secure network that cannot be tampered with or stopped by any individual or group, including its creators.\n\nThis is a network that fulfills Ethereum's vision of decentralization.",
1919
tag: {
20-
className: "bg-blue-100 text-black border-none",
20+
className: "bg-blue-600 text-white border-none",
2121
},
2222
},
2323
maturing: {
2424
label: "Maturing",
2525
description:
2626
"A network transitioning to being decentralized. A group of actors still may be able to halt the network in extreme situations.",
2727
tag: {
28-
className: "bg-blue-200 text-black border-none",
28+
className: "bg-blue-400 text-white border-none",
2929
},
3030
},
3131
developing: {
3232
label: "Developing",
3333
description:
3434
"A centralized operator runs the network but adds fail-safe features to reduce risks of centralization.",
3535
tag: {
36-
className: "bg-blue-400 text-white border-none",
36+
className: "bg-blue-200 text-black border-none",
3737
},
3838
},
3939
emerging: {
4040
label: "Emerging",
4141
description:
4242
"A centralized operator runs the network. The data is publicly visible on Ethereum to verify whether the operator is being honest.",
4343
tag: {
44-
className: "bg-blue-600 text-white border-none",
44+
className: "bg-blue-100 text-black border-none",
4545
},
4646
},
4747
} as const

0 commit comments

Comments
 (0)