Zotero Integration – Import Templates?

Try again (I typed some nonsense before). I think the colors in that template don’t match the current Zotero palette. I don’t use mgmeyers CSS anymore for this reason. But by reading this CSS snippet which works with a bog-standard install of Zotero 6.0.17 on MacOS, you should be able to work out what to change in the template and CSS:

/* Yellow */
.research-note .callout[data-callout-metadata="#ffd400"] {
  --callout-color: 255, 204, 0;
}

/* Red */
.research-note .callout[data-callout-metadata="#ff6666"] {
  --callout-color: 255, 59, 48;
}

/* Green */
.research-note .callout[data-callout-metadata="#5fb236"] {
  --callout-color: 40, 205, 65;
}

/* Blue */
.research-note .callout[data-callout-metadata="#2ea8e5"] {
  --callout-color: 0, 122, 255;
}

/* Purple */
.research-note .callout[data-callout-metadata="#a28ae5"] {
  --callout-color: 125, 84, 222;
}

(my snippet is from another template, but I think substituting “literature-note” for “research-note” is the only difference.

By editing the colorValueToName macro’s case statements you’ll fix the wording of the callout. By tweaking the literatureNote.css file’s data-callout-metadata fields you’ll get better colors for the callout.

2 Likes