Loving the mod, I know you said it's for other modules to use but all I really want to do was improve my colours and it's wonderful for that. Not totally sure how this works so no worries if this is just me trying to do awkward combinations.
Nothing seems to change this scrollbar colour (with or without Colorise ticked):

CSS via dev tools says Pseudo ::scrollbar-thumb element and points to style.css:474 which is:
::-webkit-scrollbar-thumb {
outline: none;
border-radius: 3px;
background: #782e22;
border: 1px solid var(--color-border-highlight);
}
:root {
scrollbar-width: thin;
scrollbar-color: #782e22 #111;
}
And this one only happens using the Colorise options specifically, the search in the sidebar gets dark on dark:

Which is related to foundry-vtt-colors.css:196 and foundry-vtt-colors.css:21:
.directory .directory-header .header-search input {
background: rgba(0, 0, 0, 0.05);
input[type="text"], input[type="number"], input[type="password"], input[type="date"], input[type="time"], input[type="search"], input[type="color"], input[type="color"][data-edit], select {
~~background: rgba(0, 0, 0, 0.05);~~
border-color: var(--app-dialog-background-shaded);
color: var(--app-dialog-background-contrast);
}
I have used the custom CSS module to do .header-search input {color:#ffffff;} which is good enough for me.
Loving the mod, I know you said it's for other modules to use but all I really want to do was improve my colours and it's wonderful for that. Not totally sure how this works so no worries if this is just me trying to do awkward combinations.
Nothing seems to change this scrollbar colour (with or without Colorise ticked):

CSS via dev tools says
Pseudo ::scrollbar-thumb elementand points to style.css:474 which is:And this one only happens using the Colorise options specifically, the search in the sidebar gets dark on dark:

Which is related to
foundry-vtt-colors.css:196andfoundry-vtt-colors.css:21:I have used the custom CSS module to do
.header-search input {color:#ffffff;}which is good enough for me.