13 lines
731 B
PHP
13 lines
731 B
PHP
<?php
|
|
add_action('wp_head', function() {
|
|
echo '<style>
|
|
:root { --wp--preset--color--primary: #FFBF00 !important; }
|
|
body { background-color: #0A0A0A !important; color: #FFFFFF !important; }
|
|
.wp-block-post-title a, h1, h2, h3 { color: #FFBF00 !important; font-weight: 900 !important; text-transform: uppercase; }
|
|
.wp-block-navigation a { color: #FFFFFF !important; font-weight: bold; }
|
|
.wp-block-navigation a:hover { color: #FFBF00 !important; }
|
|
.wp-block-button__link { background-color: #FFBF00 !important; color: #000 !important; border-radius: 4px !important; font-weight: bold !important; }
|
|
footer { border-top: 1px solid #333; padding-top: 20px; }
|
|
</style>';
|
|
});
|