DEFAULT_CSS = '\n ChatInput {\n height: auto;\n min-height: 3;\n max-height: 25;\n padding: 0;\n background: $surface;\n border: solid $primary;\n }\n\n ChatInput.mode-bash {\n border: solid __MODE_BASH__;\n }\n\n ChatInput.mode-command {\n border: solid __MODE_CMD__;\n }\n\n ChatInput .input-row {\n height: auto;\n width: 100%;\n }\n\n ChatInput .input-prompt {\n width: 3;\n height: 1;\n padding: 0 1;\n color: $primary;\n text-style: bold;\n }\n\n ChatInput.mode-bash .input-prompt {\n color: __MODE_BASH__;\n }\n\n ChatInput.mode-command .input-prompt {\n color: __MODE_CMD__;\n }\n\n ChatInput ChatTextArea {\n width: 1fr;\n height: auto;\n min-height: 1;\n max-height: 8;\n border: none;\n background: transparent;\n padding: 0;\n }\n\n ChatInput ChatTextArea:focus {\n border: none;\n }\n '.replace(
'__MODE_BASH__',
COLORS['mode_bash']).replace('__MODE_CMD__',
COLORS['mode_command']
)