-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
44 lines (35 loc) · 746 Bytes
/
input.css
File metadata and controls
44 lines (35 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@tailwind base;
@tailwind components;
@tailwind utilities;
.nunito-200 {
font-family: "Nunito", sans-serif;
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
}
.fira-code-200 {
font-family: "Fira Code", monospace;
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
}
.hljs {
background-color: oklch(var(--b2));
border-radius: 5px;
}
.hljs-attr {
color: oklch(var(--in));
}
.hljs-punctuation {
color: oklch(var(--nc));
}
.hljs-string {
color: oklch(var(--s));
}
.prose pre code :not(.not-prose) {
background-color: oklch(var(--b2));
border-radius: 5px;
}
.prose li::marker {
color: oklch(var(--p));
}