Aswanth
2025-05-24 6d49d975598cd7f48e2b7347c2b83d8aac6a2f56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
code[data-theme*=" "] {
  color: var(--shiki-light);
  background-color: var(--shiki-light-bg);
}
 
code[data-theme*=" "] span {
  color: var(--shiki-light);
}
 
[saved-theme="dark"] code[data-theme*=" "] {
  color: var(--shiki-dark);
  background-color: var(--shiki-dark-bg);
}
 
[saved-theme="dark"] code[data-theme*=" "] span {
  color: var(--shiki-dark);
}