Knowledge Base

How do I change the success message background color on system pages?

Written by HubSpotted | Jun 13, 2026 7:14:51 AM

That background color is coming from Theme editor (Global theme styles) > Global colors > Tertiary color.

If you don't want to change it from your theme editor, then you can use the custom CSS below:

<style>
  .systems-page .success { background-color: #E5E5E5; }
</style>

Play with the color value as you wish.

Back to Knowledge Base