サーバーの通信量を監視するやつの色を変えた

This commit is contained in:
nullnyat 2022-02-16 18:13:57 +09:00
parent 3a38bbbe6d
commit 8b197ed4d6
No known key found for this signature in database
GPG Key ID: 5EDC2816C3AE007A

View File

@ -3,40 +3,40 @@
<svg :viewBox="`0 0 ${ viewBoxX } ${ viewBoxY }`"> <svg :viewBox="`0 0 ${ viewBoxX } ${ viewBoxY }`">
<polygon <polygon
:points="inPolygonPoints" :points="inPolygonPoints"
fill="#94a029" fill="#B0E7CB"
fill-opacity="0.5" fill-opacity="0.5"
/> />
<polyline <polyline
:points="inPolylinePoints" :points="inPolylinePoints"
fill="none" fill="none"
stroke="#94a029" stroke="#B0E7CB"
stroke-width="1" stroke-width="1"
/> />
<circle <circle
:cx="inHeadX" :cx="inHeadX"
:cy="inHeadY" :cy="inHeadY"
r="1.5" r="1.5"
fill="#94a029" fill="#B0E7CB"
/> />
<text x="1" y="5">NET rx <tspan>{{ bytes(inRecent) }}</tspan></text> <text x="1" y="5">NET rx <tspan>{{ bytes(inRecent) }}</tspan></text>
</svg> </svg>
<svg :viewBox="`0 0 ${ viewBoxX } ${ viewBoxY }`"> <svg :viewBox="`0 0 ${ viewBoxX } ${ viewBoxY }`">
<polygon <polygon
:points="outPolygonPoints" :points="outPolygonPoints"
fill="#ff9156" fill="#E7BA95"
fill-opacity="0.5" fill-opacity="0.5"
/> />
<polyline <polyline
:points="outPolylinePoints" :points="outPolylinePoints"
fill="none" fill="none"
stroke="#ff9156" stroke="#E7BA95"
stroke-width="1" stroke-width="1"
/> />
<circle <circle
:cx="outHeadX" :cx="outHeadX"
:cy="outHeadY" :cy="outHeadY"
r="1.5" r="1.5"
fill="#ff9156" fill="#E7BA95"
/> />
<text x="1" y="5">NET tx <tspan>{{ bytes(outRecent) }}</tspan></text> <text x="1" y="5">NET tx <tspan>{{ bytes(outRecent) }}</tspan></text>
</svg> </svg>