オンライン状態のところの色変更

This commit is contained in:
nullnyat 2022-02-17 20:06:02 +09:00
parent 270b842c71
commit 59b2715058
No known key found for this signature in database
GPG Key ID: 5EDC2816C3AE007A

View File

@ -27,19 +27,19 @@ const text = $computed(() => {
border-radius: 120%; // Blink100% border-radius: 120%; // Blink100%
&.online { &.online {
background: #58d4c9; background: #96E7E7;
} }
&.active { &.active {
background: #e4bc48; background: #E7E7B0;
} }
&.offline { &.offline {
background: #ea5353; background: #FF9D9D;
} }
&.unknown { &.unknown {
background: #888; background: #4F5766;
} }
} }
</style> </style>