CSS Selectors for Themes
As you can see above, there are sections that are grey. I can change the colors using developer tools, but I cannot do so with RemNote's built in CSS tool.
Here are the css selectors that I tried to change but which I could not:
.incremental-everything-element { background: #171414 !important; }
button.bg-blue-50.hover:bg-blue-70.text-white.font-bold.py-2.px-4.rounded.incremental-everthing-next-button { background: #201C1C !important; color: white !important; }
.flex.flex-row.justify-center.items-center.gap-6.incremental-everything-answer-buttons { background: #171414 !important; }
button.bg-blue-50.hover:bg-blue-70.text-white.font-bold.py-2.px-4.rounded.incremental-everthing-done-button { background: #201C1C !important; color: white !important; }
I think you could try doing something like this to style the plugin elements:
div[data-plugin-id='incremental-everything'] {
font-size: 14px;
}