Hi
The only problem I noticed with TW is the faded svg icons (like in the edit
> toolbar) but I don't believe that is so easily addressed since their
> reduced opacity if linked to function (that they gain full opacity for a
> hilited effect on mouse over)
>
> It has nothing to do with opacity; there are just separate colors for
standard, hovered (and sometimes sected) colors of the button svg icons.
Create a stylesheet with the following CSS code (extracted from the Vanilla
theme):
/* COLOR TIDDLER CONTROL BUTTONS */
.tc-tiddler-controls button svg, .tc-tiddler-controls button img, .tc-search
button svg, .tc-search a svg {
fill: Magenta;
}
.tc-tiddler-controls button.tc-selected svg, .tc-page-controls
button.tc-selected
svg {
fill: LimeGreen;
}
.tc-tiddler-controls button.tc-btn-invisible:hover svg, .tc-search button:hover
svg, .tc-search a:hover svg {
fill: Blue;
}
/* COLOR PAGE CONTROL BUTTONS */
.tc-page-controls svg {
fill: Magenta;
}
.tc-page-controls button:hover svg, .tc-page-controls a:hover svg {
fill: Blue;
}
/* COLOR TOPBAR BUTTON */
.tc-topbar svg {
fill: Magenta
}
.tc-topbar button:hover svg {
fill: Blue;
}
/* COLOR EDITOR TOOLBAR BUTTONS */
.tc-editor-toolbar button {
fill: Navy;
background-color: Silver;
}
.tc-editor-toolbar button:hover {
fill: Cyan;
color: Cyan;
background-color: CornflowerBlue;
}
And adjust the colors to your liking.
Hope that helps.
Cheers,
Ton
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/d5519731-a682-49bb-aee8-fd5d169efa58%40googlegroups.com.