Change the colour of selected text in Opera
Friday, 25. April 2008, 10:09:25


There are two ways to do this;
Option 1: Custom CSS
/*
Name: Green on Black Selected Text
*/
::selection {
background: #000;
color: #7FFF00;
}
Option 2: Using Opera:Config
opera:config#Colors|SelectedBackground
opera:config#Colors|SelectedText
Option 1 allows you to make several variations and switch between them quickly, overwriting a sites preference. Option 2 is the least amount of work.









Anonymous # 23. October 2009, 14:00
Thanks!