Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Created April 15, 2026 16:46
Show Gist options
  • Select an option

  • Save pramodjodhani/c5f2a3d5601580a764956c3df03bdc56 to your computer and use it in GitHub Desktop.

Select an option

Save pramodjodhani/c5f2a3d5601580a764956c3df03bdc56 to your computer and use it in GitHub Desktop.
Kadence theme - change icon colors in the admin
<?php
/**
* Kadence theme - change icon colors in the admin
*/
function kadence_admin_change_icon_color() {
?>
<style>
svg {
/* todo: replace black with the color of your choice */
--kadence-color: black !important;
}
</style>
<?php
}
add_action( 'admin_footer', 'kadence_admin_change_icon_color' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment