-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
73 lines (62 loc) · 1.38 KB
/
index.css
File metadata and controls
73 lines (62 loc) · 1.38 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@import "tailwindcss";
/* ooxml.dev theme - Coral Light */
:root {
/* Coral accent */
--color-accent: #ea580c;
--color-accent-hover: #c2410c;
--color-accent-light: #fff7ed;
/* Backgrounds */
--color-bg-primary: #ffffff;
--color-bg-secondary: #fafaf9;
--color-bg-tertiary: #f5f5f4;
--color-bg-code: #1c1917;
/* Borders */
--color-border: #e7e5e4;
--color-border-strong: #d6d3d1;
/* Text */
--color-text-primary: #1c1917;
--color-text-secondary: #57534e;
--color-text-muted: #a8a29e;
/* Syntax highlighting (for code blocks on dark bg) */
--color-syntax-tag: #22d3ee;
--color-syntax-attr: #c4b5fd;
--color-syntax-value: #86efac;
--color-syntax-comment: #71717a;
}
body {
font-family: "Inter", system-ui, -apple-system, sans-serif;
background-color: var(--color-bg-primary);
color: var(--color-text-primary);
margin: 0;
min-height: 100vh;
}
/* Code syntax highlighting */
.token.tag {
color: var(--color-syntax-tag);
}
.token.attr-name {
color: var(--color-syntax-attr);
}
.token.attr-value {
color: var(--color-syntax-value);
}
.token.comment {
color: var(--color-syntax-comment);
}
/* Note styles */
.note-critical {
background-color: #fef2f2;
border-color: #fecaca;
}
.note-warning {
background-color: #fffbeb;
border-color: #fde68a;
}
.note-info {
background-color: #fff7ed;
border-color: #fed7aa;
}
.note-tip {
background-color: #f0fdf4;
border-color: #bbf7d0;
}