Hansimov commited on
Commit
3e30bbf
1 Parent(s): 63b7747

:zap: [Enhance] Prettify dark theme

Browse files
Files changed (2) hide show
  1. css/dark.css +24 -4
  2. index.html +4 -2
css/dark.css CHANGED
@@ -1,10 +1,10 @@
1
  body {
2
- background-color: #0f0f0f;
3
  color: #cccccc;
4
  }
5
 
6
  #top-toolbar {
7
- background-color: #373737;
8
  }
9
 
10
  #chat-agents-sidebar,
@@ -16,14 +16,34 @@ body {
16
 
17
  #user-interactions {
18
  box-shadow: 0px 2px 8px 0px rgba(122, 122, 122, 0.4);
19
- background-color: #373737;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  }
21
 
22
  input,
23
  textarea,
24
  .form-select,
25
  .form-control {
26
- background-color: #373737;
27
  color: #cccccc;
28
  border-color: #686868;
29
  }
 
1
  body {
2
+ background-color: #161616;
3
  color: #cccccc;
4
  }
5
 
6
  #top-toolbar {
7
+ background-color: #161616;
8
  }
9
 
10
  #chat-agents-sidebar,
 
16
 
17
  #user-interactions {
18
  box-shadow: 0px 2px 8px 0px rgba(122, 122, 122, 0.4);
19
+ background-color: #242424;
20
+ }
21
+
22
+ .message-user {
23
+ /* background-image: linear-gradient(-45deg, #f6f8fe, #e9efff); */
24
+ background-color: #3a4946;
25
+ }
26
+ .message-user .role-displayer {
27
+ color: #5facfa;
28
+ }
29
+
30
+ .message-assistant {
31
+ /* background-image: linear-gradient(-45deg, #f4f6fe, #ecedff); */
32
+ background-color: #3d3d50;
33
+ }
34
+ .message-assistant .role-displayer {
35
+ color: #dc68ff;
36
+ }
37
+
38
+ .content-displayer {
39
+ color: #cccccc;
40
  }
41
 
42
  input,
43
  textarea,
44
  .form-select,
45
  .form-control {
46
+ background-color: #2e2e2e;
47
  color: #cccccc;
48
  border-color: #686868;
49
  }
index.html CHANGED
@@ -30,7 +30,8 @@
30
  <h5 class="offcanvas-title" id="chat-history-label">
31
  <a style="text-decoration: none; color:inherit;" href="#">History</a>
32
  </h5>
33
- <button id="chat-history-sidebar-close-button" class="btn-close">
 
34
  </button>
35
  </div>
36
  <div class="offcanvas-body">
@@ -58,7 +59,8 @@
58
  <div class="offcanvas offcanvas-end" data-bs-scroll="true" data-bs-backdrop="false" id="chat-agents-sidebar"
59
  aria-labelledby="chat-agents-sidebar-label">
60
  <div class="offcanvas-header">
61
- <button id="chat-agents-sidebar-close-button" class="btn-close">
 
62
  </button>
63
  <h5 class="offcanvas-title" id="chat-agents-label">
64
  <a style="text-decoration: none; color:inherit;" href="#">Agents</a>
 
30
  <h5 class="offcanvas-title" id="chat-history-label">
31
  <a style="text-decoration: none; color:inherit;" href="#">History</a>
32
  </h5>
33
+ <button id="chat-history-sidebar-close-button" class="btn">
34
+ <i class="fa fa-close"></i>
35
  </button>
36
  </div>
37
  <div class="offcanvas-body">
 
59
  <div class="offcanvas offcanvas-end" data-bs-scroll="true" data-bs-backdrop="false" id="chat-agents-sidebar"
60
  aria-labelledby="chat-agents-sidebar-label">
61
  <div class="offcanvas-header">
62
+ <button id="chat-agents-sidebar-close-button" class="btn px-0 mx-0">
63
+ <i class="fa fa-close"></i>
64
  </button>
65
  <h5 class="offcanvas-title" id="chat-agents-label">
66
  <a style="text-decoration: none; color:inherit;" href="#">Agents</a>