-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
169 lines (139 loc) · 2.3 KB
/
default.css
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
168
169
@define-color main_color rgba(255, 255, 255, 0.8);
@define-color main_border_color #37f499;
@define-color gradient_start hsla(234.55, 25%, 17.25%, 1);
@define-color gradient_end hsla(234.55, 25%, 17.25%, 0.90);
@define-color search_background rgb(50, 52, 73);
@define-color search_icon_color rgba(255, 255, 255, 0.8);
@define-color typeahead_color hsl(189.8, 96.84%, 49.61%);
@define-color selected_background hsla(172, 100%, 25.3%, 0.6);
@define-color ai_color rgba(255, 255, 255, 0.8);
@define-color ai_response_background hsla(219, 28.6%, 19.2%, 0.8);
#window,
#box,
#aiScroll,
#aiList,
#search,
#password,
#input,
#prompt,
#clear,
#typeahead,
#list,
child,
scrollbar,
slider,
#item,
#text,
#label,
#bar,
#sub,
#activationlabel {
all: unset;
}
#text {
font-family: "Iosevka Custom,";
font-weight: 900;
}
#window {
color: @main_color;
}
#box {
border-radius: 2px;
background: linear-gradient(to bottom, @gradient_start, @gradient_end);
padding: 32px;
border: 1px solid @main_border_color;
box-shadow:
0 19px 38px rgba(0, 0, 0, 0.3),
0 15px 12px rgba(0, 0, 0, 0.22);
}
#search {
box-shadow:
0 1px 3px rgba(0, 0, 0, 0.1),
0 1px 2px rgba(0, 0, 0, 0.22);
background: @search_background;
padding: 8px;
}
#prompt {
margin-left: 4px;
margin-right: 12px;
color: @search_icon_color;
opacity: 0.2;
}
#clear {
color: @search_icon_color;
opacity: 0.8;
}
#password,
#input,
#typeahead {
border-radius: 2px;
}
#input {
background: none;
}
#password {
}
#spinner {
padding: 8px;
}
#typeahead {
color: @typeahead_color;
}
#input placeholder {
opacity: 0.5;
}
#input > *:last-child,
#typeahead > *:last-child {
color: var(--search-icon-color);
opacity: 0.8;
}
#list {
}
child {
padding: 8px;
border-radius: 2px;
}
child:selected,
child:hover {
background: @selected_background;
}
#item {
}
#icon {
margin-right: 8px;
}
#text {
}
#label {
font-weight: 500;
}
#sub {
opacity: 0.5;
font-size: 0.8em;
}
#activationlabel {
}
#bar {
}
.barentry {
}
.activation #activationlabel {
}
.activation #text,
.activation #icon,
.activation #search {
opacity: 0.5;
}
.aiItem {
padding: 10px;
border-radius: 2px;
color: @ai_color;
}
.aiItem.user {
background: none;
padding-left: 0;
padding-right: 0;
}
.aiItem.assistant {
background: @ai_response_background;
}