Kinematics
Well worn.
- Joined
 - May 14, 2015
 
- Messages
 - 7,147
 
- Likes received
 - 19,969
 
Going back to the signature border, I'm going to separate it into two sections.
For Layout, it just needs a greater thickness:
	
	
	
		
For theming, it needs some distinctive coloring, and light and dark themes need different colors. I chose the value already in use by the Lightented theme for light themes, so that Light gets it as well (instead of the nearly invisible pale color). For dark themes, I had it as a lighter gray, but I think a bit of color is really needed. I ended up with a faded blue color that I think works well with all the other main colors (red, green, blue, purple).
	
	
	
		
				
			For Layout, it just needs a greater thickness:
		CSS:
	
	.message-signature {
    border-top-width: 3px;
}
	For theming, it needs some distinctive coloring, and light and dark themes need different colors. I chose the value already in use by the Lightented theme for light themes, so that Light gets it as well (instead of the nearly invisible pale color). For dark themes, I had it as a lighter gray, but I think a bit of color is really needed. I ended up with a faded blue color that I think works well with all the other main colors (red, green, blue, purple).
		CSS:
	
	html.style-light .message-signature {
    border-color: #414141;
}
html.style-dark .message-signature {
    border-color: #418181;
}