fix almost invisible text on network status tab in dark themes

The foreground color of texts on network status tab is now
statically fixed to black and not affected by what theme is being
used.
This commit is contained in:
Kashiko Koibumi 2024-05-21 14:30:13 +09:00
parent 41fd17b637
commit 59a9aae8a4
No known key found for this signature in database
GPG Key ID: 8F06E069E37C40C4

View File

@ -54,6 +54,15 @@
</color> </color>
</brush> </brush>
</colorrole> </colorrole>
<colorrole role="Text">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>0</red>
<green>0</green>
<blue>0</blue>
</color>
</brush>
</colorrole>
</active> </active>
<inactive> <inactive>
<colorrole role="Base"> <colorrole role="Base">
@ -65,6 +74,15 @@
</color> </color>
</brush> </brush>
</colorrole> </colorrole>
<colorrole role="Text">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>0</red>
<green>0</green>
<blue>0</blue>
</color>
</brush>
</colorrole>
</inactive> </inactive>
<disabled> <disabled>
<colorrole role="Base"> <colorrole role="Base">
@ -76,6 +94,15 @@
</color> </color>
</brush> </brush>
</colorrole> </colorrole>
<colorrole role="Text">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>0</red>
<green>0</green>
<blue>0</blue>
</color>
</brush>
</colorrole>
</disabled> </disabled>
</palette> </palette>
</property> </property>