I don’t know what you mean by activate my page again… the search/category works now.
To the colours – this in your CSS:
.pagination li.active a:hover, .pagination li.active a {
color: #ffffff;
border: 1px solid var(--color-primary-active);
background: var(--color-primary);
}
.pagination li a:hover {
color: var(--color-primary) !important;
border: 1px solid var(--color-primary) !important;
background: #ffffff;
}
The !important on the a:hover color, means both text and background are the same colour, because li.active takes over (background=primary) but a:hover remains (color=primary) due to the !important.
Not relevant what colour I change in settings.
Cheers