diff --git a/pandora_console/general/alert_enterprise.php b/pandora_console/general/alert_enterprise.php
index 69a09d2998..4cb4a29740 100644
--- a/pandora_console/general/alert_enterprise.php
+++ b/pandora_console/general/alert_enterprise.php
@@ -105,7 +105,7 @@ if (check_login()) {
 
             echo __(
                 "This is the online help for %s console. This help is -in best cases- just a brief contextual help, not intented to teach you how to use %s. Official documentation of %s is about 900 pages, and you probably don't need to read it entirely, but sure, you should download it and take a look.<br><br>
-  <a href='%s' target='_blanck' style='color: #82b92e; font-size: 10pt; text-decoration: underline;'>Download the official documentation</a>",
+  <a href='%s' target='_blanck' class='pandora_green_text' style='font-size: 10pt; text-decoration: underline;'>Download the official documentation</a>",
                 get_product_name(),
                 get_product_name(),
                 get_product_name(),
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index b3a0ebca57..fb80634465 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -5921,3 +5921,12 @@ table.table_modal_alternate tr td:first-child {
   font-size: 14px;
   font-weight: bold;
 }
+
+/* Generic classes to reuse and facilitate the creation of custom themes */
+.pandora_green_text {
+  color: #82b92e;
+}
+
+.pandora_green_bg {
+  background-color: #82b92e;
+}