|
4 | 4 | @theme { |
5 | 5 | --font-serif: "Redaction", serif; |
6 | 6 | --font-sans: "Geist", sans-serif; |
| 7 | + --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; |
7 | 8 | --font-redaction: "Redaction", serif; |
8 | 9 | --color-evlog-blue: #2853FF; |
9 | 10 | } |
10 | 11 |
|
11 | 12 | :root { |
12 | 13 | --ui-radius: 0; |
13 | | - --ui-bg: #fafafa; |
| 14 | + --ui-bg: #09090b; |
14 | 15 | --ui-primary: #2853FF; |
15 | | - --color-primary-50: #eef2ff; |
16 | | - --color-primary-100: #e0e7ff; |
17 | | - --color-primary-200: #c7d2fe; |
18 | | - --color-primary-300: #a5b4fc; |
19 | | - --color-primary-400: #818cf8; |
20 | | - --color-primary-500: #2853FF; |
21 | | - --color-primary-600: #2347db; |
22 | | - --color-primary-700: #1e3bb7; |
23 | | - --color-primary-800: #192f93; |
24 | | - --color-primary-900: #142370; |
25 | | - --color-primary-950: #0c1747; |
26 | 16 | } |
27 | 17 |
|
28 | | -.dark { |
29 | | - --ui-bg: #020202; |
| 18 | +.dark, |
| 19 | +:root { |
| 20 | + --ui-bg: #09090b; |
30 | 21 | --ui-primary: #2853FF; |
31 | 22 | } |
32 | 23 |
|
33 | | -/* evlog blue dot accent */ |
34 | | -.evlog-dot { |
35 | | - color: var(--color-evlog-blue); |
36 | | - font-weight: 700; |
37 | | -} |
38 | | - |
39 | 24 | @layer base { |
40 | 25 | :root { |
41 | 26 | @apply selection:bg-primary selection:text-highlighted; |
42 | 27 | } |
43 | 28 | } |
44 | 29 |
|
45 | | -/* Hero grid background pattern */ |
46 | | -.hero-grid { |
47 | | - background-image: |
48 | | - radial-gradient(circle, #e4e4e7 1px, transparent 1px); |
49 | | - background-size: 40px 40px; |
50 | | -} |
51 | | - |
52 | | -.dark .hero-grid { |
53 | | - background-image: |
54 | | - radial-gradient(circle, #18181b 1px, transparent 1px); |
55 | | -} |
56 | | - |
57 | | -/* Corner bracket decorations */ |
58 | | -.corner-bracket { |
59 | | - position: absolute; |
60 | | - width: 32px; |
61 | | - height: 32px; |
62 | | - border-color: #d4d4d8; |
63 | | -} |
64 | | - |
65 | | -.dark .corner-bracket { |
66 | | - border-color: #3f3f46; |
67 | | -} |
68 | | - |
69 | | -.corner-bracket-tl { |
70 | | - top: 24px; |
71 | | - left: 24px; |
72 | | - border-left-width: 1px; |
73 | | - border-top-width: 1px; |
74 | | -} |
75 | | - |
76 | | -.corner-bracket-tr { |
77 | | - top: 24px; |
78 | | - right: 24px; |
79 | | - border-right-width: 1px; |
80 | | - border-top-width: 1px; |
81 | | -} |
82 | | - |
83 | | -.corner-bracket-bl { |
84 | | - bottom: 24px; |
85 | | - left: 24px; |
86 | | - border-left-width: 1px; |
87 | | - border-bottom-width: 1px; |
88 | | -} |
89 | | - |
90 | | -.corner-bracket-br { |
91 | | - bottom: 24px; |
92 | | - right: 24px; |
93 | | - border-right-width: 1px; |
94 | | - border-bottom-width: 1px; |
95 | | -} |
96 | | - |
97 | | -/* Editorial typography */ |
| 30 | +/* Editorial title - Redaction font */ |
98 | 31 | .editorial-title { |
99 | 32 | font-family: var(--font-redaction); |
100 | 33 | letter-spacing: -0.02em; |
101 | 34 | line-height: 1.1; |
102 | 35 | } |
103 | 36 |
|
104 | | -/* Subtle separator line */ |
105 | | -.editorial-separator { |
106 | | - height: 1px; |
107 | | - background: linear-gradient(to right, transparent, #e4e4e7, transparent); |
108 | | -} |
109 | | - |
110 | | -.dark .editorial-separator { |
111 | | - background: linear-gradient(to right, transparent, #27272a, transparent); |
112 | | -} |
113 | | - |
114 | | -/* Log output styling */ |
115 | | -.log-output { |
116 | | - font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; |
117 | | - font-size: 0.8125rem; |
118 | | - line-height: 1.6; |
119 | | -} |
120 | | - |
121 | | -.log-output .log-level { |
122 | | - color: #22c55e; |
123 | | - font-weight: 600; |
| 37 | +/* Blue dot accent */ |
| 38 | +.evlog-dot { |
| 39 | + color: var(--color-evlog-blue); |
124 | 40 | } |
125 | 41 |
|
126 | | -.log-output .log-method { |
127 | | - color: #a78bfa; |
| 42 | +/* Section label with dot */ |
| 43 | +.section-label::before { |
| 44 | + content: ''; |
| 45 | + display: inline-block; |
| 46 | + width: 6px; |
| 47 | + height: 6px; |
| 48 | + border-radius: 50%; |
| 49 | + background-color: var(--color-evlog-blue); |
| 50 | + margin-right: 0.5rem; |
128 | 51 | } |
129 | 52 |
|
130 | | -.log-output .log-path { |
131 | | - color: #fbbf24; |
| 53 | +/* Subtle dot grid for hero */ |
| 54 | +.dot-grid { |
| 55 | + background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 1px, transparent 1px); |
| 56 | + background-size: 24px 24px; |
132 | 57 | } |
133 | 58 |
|
134 | | -.log-output .log-duration { |
135 | | - color: #6b7280; |
| 59 | +/* Fade mask for scroll areas */ |
| 60 | +.fade-bottom { |
| 61 | + mask-image: linear-gradient(to bottom, black 80%, transparent 100%); |
136 | 62 | } |
137 | 63 |
|
138 | | -.log-output .log-key { |
139 | | - color: #60a5fa; |
| 64 | +/* Animated underline for links */ |
| 65 | +.animated-underline { |
| 66 | + position: relative; |
140 | 67 | } |
141 | 68 |
|
142 | | -.log-output .log-string { |
143 | | - color: #34d399; |
| 69 | +.animated-underline::after { |
| 70 | + content: ''; |
| 71 | + position: absolute; |
| 72 | + bottom: -2px; |
| 73 | + left: 0; |
| 74 | + width: 0; |
| 75 | + height: 1px; |
| 76 | + background-color: var(--color-evlog-blue); |
| 77 | + transition: width 0.3s ease; |
144 | 78 | } |
145 | 79 |
|
146 | | -.log-output .log-number { |
147 | | - color: #f472b6; |
| 80 | +.animated-underline:hover::after { |
| 81 | + width: 100%; |
148 | 82 | } |
0 commit comments