-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathexample-dark-style.css
More file actions
167 lines (138 loc) · 2.97 KB
/
example-dark-style.css
File metadata and controls
167 lines (138 loc) · 2.97 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* Dark theme with card-based layout */
body {
background-color: #1a1a1a;
color: #e0e0e0;
}
.conversation {
background-color: #2d2d2d;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
margin: 20px auto;
padding: 30px;
}
.conversation-header {
background: linear-gradient(135deg, #4a5568, #2d3748);
color: white;
border-radius: 8px;
padding: 20px;
margin: -30px -30px 30px -30px;
border-bottom: none;
}
.conversation-header h2 {
color: white;
margin: 0;
font-size: 1.5em;
}
.message-group {
background-color: #3a3a3a;
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
border-left: 4px solid #4a9eff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.message-group.user {
border-left-color: #ff6b6b;
background-color: #2c1810;
}
.message-group.assistant {
border-left-color: #51cf66;
background-color: #0a2818;
}
.message-header {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 8px;
padding: 10px 15px;
margin: -20px -20px 15px -20px;
border-bottom: none;
}
.message-title {
color: #ffffff;
font-size: 1.2em;
}
.anchor-link {
color: #888;
}
.anchor-link:hover {
color: #4a9eff;
}
.message-timestamp {
color: #aaa;
}
.tool-use {
background-color: #404040;
border: 1px solid #555;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.tool-header {
background-color: rgba(255, 255, 255, 0.1);
margin: -15px -15px 10px -15px;
padding: 10px 15px;
border-radius: 8px 8px 0 0;
}
.bash-tool .tool-header {
background-color: rgba(220, 53, 69, 0.2);
color: #ff6b6b;
}
.read-tool .tool-header {
background-color: rgba(40, 167, 69, 0.2);
color: #51cf66;
}
.edit-tool .tool-header,
.multiedit-tool .tool-header {
background-color: rgba(255, 193, 7, 0.2);
color: #ffd43b;
}
.grep-tool .tool-header {
background-color: rgba(23, 162, 184, 0.2);
color: #4a9eff;
}
.tool-output, .file-preview, .diff-preview {
background-color: #1a1a1a;
border: 1px solid #555;
color: #e0e0e0;
}
.diff-line.removed {
background-color: rgba(220, 53, 69, 0.2);
color: #ff6b6b;
}
.diff-line.added {
background-color: rgba(40, 167, 69, 0.2);
color: #51cf66;
}
.text-content code {
background-color: #404040;
color: #ffd43b;
border: 1px solid #555;
}
.system-reminder {
background-color: rgba(255, 193, 7, 0.15);
border: 1px solid rgba(255, 193, 7, 0.3);
color: #ffd43b;
}
.conversation-nav {
background-color: #2d2d2d;
border: 1px solid #555;
color: #e0e0e0;
}
.conversation-nav h2 {
color: #ffffff;
}
.conversation-toc a {
background-color: #3a3a3a;
border: 1px solid #555;
color: #4a9eff;
}
.conversation-toc a:hover {
background-color: #404040;
border-color: #4a9eff;
}
.back-to-top a {
background-color: #3a3a3a;
border: 1px solid #555;
color: #aaa;
}
.back-to-top a:hover {
background-color: #404040;
color: #4a9eff;
}