diff --git a/app/views/layouts/minimal.html.haml b/app/views/layouts/minimal.html.haml
index 73ae26b1940d1b4fbe790d2d9119f292cea403bc..6150addadb6642d7ac6ba0b57e1f5c19149648fc 100644
--- a/app/views/layouts/minimal.html.haml
+++ b/app/views/layouts/minimal.html.haml
@@ -1,5 +1,5 @@
 - @with_header = true
-- page_classes = page_class.push(@html_class).flatten.compact
+- page_classes = page_class.push(@html_class, user_application_color_mode).flatten.compact
 - body_classes = [system_message_class, @body_class]
 
 !!! 5
diff --git a/ee/app/assets/stylesheets/pages/gitlab_subscriptions.scss b/ee/app/assets/stylesheets/pages/gitlab_subscriptions.scss
index 4f64c686a42eeda8d7812f5843e878ec0681b5a7..e9e82220d14da5747021329c6957c65d1b1f844f 100644
--- a/ee/app/assets/stylesheets/pages/gitlab_subscriptions.scss
+++ b/ee/app/assets/stylesheets/pages/gitlab_subscriptions.scss
@@ -1,10 +1,6 @@
 .duo-pro-trials {
   background-color: $brand-charcoal;
 
-  .advantages-text {
-    color: $gray-50;
-  }
-
   .bg-decorations {
     background-image: url('illustrations/bg-decorations.svg');
     background-repeat: no-repeat;
diff --git a/ee/app/views/gitlab_subscriptions/trials/duo_pro/_advantages_list.html.haml b/ee/app/views/gitlab_subscriptions/trials/duo_pro/_advantages_list.html.haml
index ea46a23dcc070326909a9ad876b9c74c25e7ba51..06fd9942a5a82f8bce1f59e11aec9b524c2bd1d4 100644
--- a/ee/app/views/gitlab_subscriptions/trials/duo_pro/_advantages_list.html.haml
+++ b/ee/app/views/gitlab_subscriptions/trials/duo_pro/_advantages_list.html.haml
@@ -7,13 +7,13 @@
 - items << s_('DuoProTrial|Test generation')
 
 
-.advantages-text.gl-m-7.gl-max-w-48
+.gl-m-7.gl-max-w-48.gl-text-secondary
   = s_('DuoProTrial|GitLab Duo Pro is designed to make teams more efficient throughout the software development lifecycle with:')
 
   - items.each do |item|
     .gl-display-flex.gl-align-items-start.gl-gap-3.gl-pt-6
       .gl-flex-shrink-0
-        = sprite_icon('check-circle')
+        = sprite_icon('check-circle', css_class: 'gl-text-green-500')
       = item
 
   .gl-pt-6