DB2: ui-tabulator custom styling help

I am using the “dark” theme in ui-tabulator and have the “pagination” property enabled. However, the “pagination” controls are not really visible as the default text color is dark grey/black for the “unselected” items.

Screenshot 2025-08-25 at 7.32.24 AM

If I change the color in the inspect element panel to a lighter color, the page controls are visible.

Does anyone know how I can make this change to override the default setting the “dark” theme file

Thanks for your help.

Figured it out… I have a ui-wide CSS template and I added the following to it:

.tabulator .tabulator-footer .tabulator-page {
    color: white !important;
}

I had to use “!Important” - did not work without that :man_shrugging:t2:

1 Like