Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 564 Bytes

Tags styling - Target specific tag.md

File metadata and controls

30 lines (21 loc) · 564 Bytes

Collection

Tags styling - Target specific tag


  • author:: rushi
  • source::

Only works in reading mode.

cover::

/* Tags styling - Target specific tag */
.tag[href^="#obsidian"] {
  background-color: rgb(var(--color-obsidian-rgb), 0.1);
  color: var(--obsidian);
  font-weight: bolder;
}

/* Feel free to customize for other tags by modifying the selector and color variables below */

body {
  --color-obsidian-rgb: 233, 49, 71;
  --obsidian: rgb(var(--color-obsidian-rgb));
}