Branded Text Selection

This is a fairly simple use case to make your text selection branded. It gives a lovely touch to your website


<style>
body ::selection {
 		background: #DDD7F7;
  	color: #4d27e6;
  }
body ::-moz-selection { /* Firefox */
    background: #DDD7F7;
  	color: #4d27e6;
   }
   
body img::selection {
		background: transparent;
		color: transparent;
    }
</style>