|  | 
| 16 | 16 |     orange: "FF7700"  # Used for command echo | 
| 17 | 17 |     # KivyMD theming parameters | 
| 18 | 18 |     theme_style: "Dark" # Light/Dark | 
| 19 |  | -    primary_palette: "Green" # Many options | 
| 20 |  | -    dynamic_scheme_name: "TONAL_SPOT" | 
|  | 19 | +    primary_palette: "Lightsteelblue" # Many options | 
|  | 20 | +    dynamic_scheme_name: "VIBRANT" | 
| 21 | 21 |     dynamic_scheme_contrast: 0.0 | 
| 22 | 22 | <MDLabel>: | 
| 23 | 23 |     color: self.theme_cls.primaryColor | 
|  | 24 | +<BaseButton>: | 
|  | 25 | +    ripple_color: app.theme_cls.primaryColor | 
|  | 26 | +    ripple_duration_in_fast: 0.2 | 
|  | 27 | +<MDTabsItemBase>: | 
|  | 28 | +    ripple_color: app.theme_cls.primaryColor | 
|  | 29 | +    ripple_duration_in_fast: 0.2 | 
| 24 | 30 | <TooltipLabel>: | 
| 25 | 31 |     adaptive_height: True | 
| 26 |  | -    font_size: dp(20) | 
|  | 32 | +    theme_font_size: "Custom" | 
|  | 33 | +    font_size: "20dp" | 
| 27 | 34 |     markup: True | 
| 28 | 35 |     halign: "left" | 
| 29 | 36 | <SelectableLabel>: | 
| 30 | 37 |     size_hint: 1, None | 
|  | 38 | +    theme_text_color: "Custom" | 
|  | 39 | +    text_color: 1, 1, 1, 1 | 
| 31 | 40 |     canvas.before: | 
| 32 | 41 |         Color: | 
| 33 |  | -            rgba: (.0, 0.9, .1, .3) if self.selected else self.theme_cls.surfaceContainerLowColor | 
|  | 42 | +            rgba: (self.theme_cls.primaryColor[0], self.theme_cls.primaryColor[1], self.theme_cls.primaryColor[2], .3) if self.selected else self.theme_cls.surfaceContainerLowestColor | 
| 34 | 43 |         Rectangle: | 
| 35 | 44 |             size: self.size | 
| 36 | 45 |             pos: self.pos | 
|  | 
| 154 | 163 | <ToolTip>: | 
| 155 | 164 |     size: self.texture_size | 
| 156 | 165 |     size_hint: None, None | 
|  | 166 | +    theme_font_size: "Custom" | 
| 157 | 167 |     font_size: dp(18) | 
| 158 | 168 |     pos_hint: {'center_y': 0.5, 'center_x': 0.5} | 
| 159 | 169 |     halign: "left" | 
|  | 170 | +    theme_text_color: "Custom" | 
|  | 171 | +    text_color: (1, 1, 1, 1) | 
| 160 | 172 |     canvas.before: | 
| 161 | 173 |         Color: | 
| 162 | 174 |             rgba: 0.2, 0.2, 0.2, 1 | 
|  | 
| 175 | 187 |             rectangle: self.x-2, self.y-2, self.width+4, self.height+4 | 
| 176 | 188 | <ServerToolTip>: | 
| 177 | 189 |     pos_hint: {'center_y': 0.5, 'center_x': 0.5} | 
| 178 |  | -<AutocompleteHintInput> | 
|  | 190 | +<AutocompleteHintInput>: | 
| 179 | 191 |     size_hint_y: None | 
| 180 |  | -    height: dp(30) | 
|  | 192 | +    height: "30dp" | 
| 181 | 193 |     multiline: False | 
| 182 | 194 |     write_tab: False | 
|  | 195 | +    pos_hint: {"center_x": 0.5, "center_y": 0.5} | 
|  | 196 | +<ConnectBarTextInput>: | 
|  | 197 | +    height: "30dp" | 
|  | 198 | +    multiline: False | 
|  | 199 | +    write_tab: False | 
|  | 200 | +    role: "medium" | 
|  | 201 | +    size_hint_y: None | 
|  | 202 | +    pos_hint: {"center_x": 0.5, "center_y": 0.5} | 
|  | 203 | +<CommandPromptTextInput>: | 
|  | 204 | +    size_hint_y: None | 
|  | 205 | +    height: "30dp" | 
|  | 206 | +    multiline: False | 
|  | 207 | +    write_tab: False | 
|  | 208 | +    pos_hint: {"center_x": 0.5, "center_y": 0.5} | 
|  | 209 | +<MessageBoxLabel>: | 
|  | 210 | +    theme_text_color: "Custom" | 
|  | 211 | +    text_color: 1, 1, 1, 1 | 
| 183 | 212 | <ScrollBox>: | 
| 184 | 213 |     layout: layout | 
| 185 | 214 |     bar_width: "12dp" | 
|  | 
0 commit comments