diff --git a/source/css/style.pcss b/source/css/style.pcss
index 6e90e655868005f829eada9b6aba8880220f32ca..b8c3e157b959e95c3c3ac529856edfe06ef97b07 100644
--- a/source/css/style.pcss
+++ b/source/css/style.pcss
@@ -15,7 +15,7 @@
 */
 @import "tailwindcss/components";
 
- /**
+/**
  * Custom components
  */
 @import "./atoms/avatar.pcss";
@@ -65,11 +65,15 @@
 */
 @import "tailwindcss/utilities";
 
-/**
- * Custom utilities
- */
-@import "./utils.pcss";
+::-moz-selection {
+  color: theme("colors.white");
+  background: theme("colors.grey.500");
+}
 
+::selection {
+  color: theme("colors.white");
+  background: theme("colors.grey.500");
+}
 
 :root {
   font-size: 16px;
@@ -96,3 +100,8 @@ a.icon-link:hover {
 [v-cloak] {
   @apply hidden;
 }
+
+/**
+ * Custom utilities
+ */
+@import "./utils.pcss";