Skip to content

Instantly share code, notes, and snippets.

@kabili207
Created May 3, 2016 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kabili207/934a9f4853f1bc00068aa33b0d80512c to your computer and use it in GitHub Desktop.
Save kabili207/934a9f4853f1bc00068aa33b0d80512c to your computer and use it in GitHub Desktop.
Adding custom tags to thunderbird
user_pref("mailnews.tags.$cl_1.color", "#CC0000");
user_pref("mailnews.tags.$cl_1.tag", "red");
user_pref("mailnews.tags.$cl_10.color", "#FFFF00");
user_pref("mailnews.tags.$cl_10.tag", "yellow");
user_pref("mailnews.tags.$cl_2.color", "#3333FF");
user_pref("mailnews.tags.$cl_2.tag", "blue");
user_pref("mailnews.tags.$cl_3.color", "#006600");
user_pref("mailnews.tags.$cl_3.tag", "green");
user_pref("mailnews.tags.$cl_4.color", "#999999");
user_pref("mailnews.tags.$cl_4.tag", "grey");
user_pref("mailnews.tags.$cl_5.color", "#6600CC");
user_pref("mailnews.tags.$cl_5.tag", "violet");
user_pref("mailnews.tags.$cl_6.color", "#33CC00");
user_pref("mailnews.tags.$cl_6.tag", "light green");
user_pref("mailnews.tags.$cl_7.color", "#FF9900");
user_pref("mailnews.tags.$cl_7.tag", "orange");
user_pref("mailnews.tags.$cl_8.color", "#CC33CC");
user_pref("mailnews.tags.$cl_8.tag", "pink");
user_pref("mailnews.tags.$cl_9.color", "#33CCFF");
user_pref("mailnews.tags.$cl_9.tag", "light blue");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment