Created
March 4, 2020 05:40
-
-
Save martirsadota/54a81afa458cfc8989779c47c860a86a to your computer and use it in GitHub Desktop.
Dark tooltips for KC3Kai
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Dark Mode Tooltips for KC3Kai | |
how to use: | |
paste code in KC3Kai Settings > Panel > Custom CSS | |
*/ | |
.ui-tooltip { | |
background-color:#242424; | |
color: #CCC; | |
} | |
.ui-tooltip-content .ship_face_tooltip .ship_full_name span.ship_yomi { | |
color: #888; | |
} | |
.ui-tooltip-content .ship_face_tooltip .aa_col.sd_both, | |
.ui-tooltip-content .ship_face_tooltip .aa_col.sd_prop, | |
.ui-tooltip-content .ship_face_tooltip .aa_col.sd_fixed, | |
.ui-tooltip-content .ship_face_tooltip .aa_col.sd_fail { | |
color: #D75048; | |
} | |
.ui-tooltip-content .power_capped { | |
color: #E183CE; | |
} | |
.ui-tooltip-content .ship_face_tooltip .stat_icon { | |
background-color: #333; | |
border-color: #242424; | |
} | |
.ui-tooltip-content img[src*="/stats/"] { | |
filter: grayscale(100%) invert(100%) sepia(100%) saturate(150%); | |
} | |
.ui-tooltip-content img[src*="/stats/mod_"] { | |
filter: none; | |
} | |
.ui-tooltip-content .ship_face_tooltip .aa_col, | |
.ui-tooltip-content .ship_face_tooltip .stat_value { | |
background-color: #333; | |
border-color: #242424; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment