Mirror of https://git.jolheiser.com/ugit
1.markdown * {
2 all: revert-layer;
3 color: rgb(var(--ctp-text));
4}
5
6.markdown code,
7.markdown pre {
8 background-color: rgb(var(--ctp-base));
9}
10
11.markdown a {
12 color: rgb(var(--ctp-blue));
13 text-decoration-line: underline;
14 text-decoration-style: dashed;
15}
16
17.markdown a:hover {
18 text-decoration-style: solid;
19}
20
21.markdown .chroma {
22 @apply p-3 rounded;
23}
24
25.chroma * {
26 background-color: rgb(var(--ctp-base)) !important;
27}
28
29.chroma table {
30 border-spacing: 5px 0 !important;
31}
32
33.chroma .lnt {
34 color: rgb(var(--ctp-subtext1)) !important;
35}
36
37.chroma .lnt:target,
38.chroma .lnt:focus {
39 color: rgb(var(--ctp-subtext0)) !important;
40}
41
42.chroma .line.active,
43.chroma .line.active * {
44 background: rgb(var(--ctp-surface0)) !important;
45}
46
47.code>.chroma {
48 @apply text-sm p-3 rounded overflow-scroll;
49}
50
51.chroma .line {
52 @apply overflow-scroll
53}