Commit a7ed87721038373728ed83fc18610d7fd279635b

Remy Bach 2012-11-07T21:45:16

Add text selection background colour

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/prism-twilight.css b/prism-twilight.css
index fd4a0f0..9566a5a 100644
--- a/prism-twilight.css
+++ b/prism-twilight.css
@@ -115,6 +115,14 @@ pre[data-line] {
 	color: hsl(76, 21%, 52%);
 }
 
+/* Text Selection colour */
+::selection {
+	background: hsla(0,0%,93%,0.15);
+}
+::-moz-selection {
+	background: hsla(0,0%,93%,0.15);
+}
+
 /* Make the tokens sit above the line highlight so the colours don't look faded. */
 .token {
 	position:relative;