fix(flatten-threads): change reply button color to violet

Due to the recent change in the md3 color theme, the button was styled
green, and the recommended button next to it was also green. This can
cause confusion, and that's why this CL changes the color of the button
back to the color it previously had.

Fixed: twpowertools:186
Change-Id: Ib14028c7f22cfe5802b20e3e004faba7707f0b6a
diff --git a/src/md3/theme.scss b/src/md3/theme.scss
index c06c226..066db8c 100644
--- a/src/md3/theme.scss
+++ b/src/md3/theme.scss
@@ -50,6 +50,9 @@
   --#{$var-prefix}md-sys-color-surface-container: rgb(26 33 32);
   --#{$var-prefix}md-sys-color-surface-container-high: rgb(37 43 42);
   --#{$var-prefix}md-sys-color-surface-container-highest: rgb(48 54 53);
+
+  // Custom colors
+  --#{$var-prefix}reply-button-color: #d0bcfe;
 }
 
 @mixin light-theme {
@@ -102,4 +105,7 @@
   --md-sys-color-surface-container: rgb(233 239 237);
   --md-sys-color-surface-container-high: rgb(227 234 231);
   --md-sys-color-surface-container-highest: rgb(221 228 225);
+
+  // Custom colors
+  --reply-button-color: #65558f;
 }