Created
April 15, 2026 16:46
-
-
Save pramodjodhani/c5f2a3d5601580a764956c3df03bdc56 to your computer and use it in GitHub Desktop.
Kadence theme - change icon colors in the admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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