/* ==================================================
 * Regex Syntax Highlight
 * ================================================== */

/* エスケープシーケンス: \d, \w, \s, etc. */
.regex-escape {
  color: #2563eb;
  font-weight: 600;
}

/* 文字クラス: [...] */
.regex-class {
  color: #d97706;
}

/* グループ・括弧: (...), (?:...) */
.regex-group {
  color: #c026d3;
  font-weight: 600;
}

/* 量指定子: *, +, ?, {n,m} */
.regex-quantifier {
  color: #16a34a;
  font-weight: 600;
}

/* アンカー・選択: ^, $, | */
.regex-anchor {
  color: #ef4444;
  font-weight: 600;
}
