forked from React-Group/interstellar_ai
16 lines
544 B
CSS
16 lines
544 B
CSS
|
:root {
|
||
|
--background-color: white;
|
||
|
--text-color: white;
|
||
|
--font-family: Arial, sans-serif;
|
||
|
--history-background-color: rgb(0, 0, 48);
|
||
|
--models-background-color: rgb(0, 0, 48);
|
||
|
--output-background-color: black;
|
||
|
--user-message-color: rgb(0, 128, 255);
|
||
|
--ai-message-color: rgb(100, 100, 255);
|
||
|
--input-background-color: rgb(0, 0, 48);
|
||
|
--input-button-color: rgb(0, 128, 255);
|
||
|
--input-button-hover-color: rgb(0, 100, 200);
|
||
|
--scrollbar-track: rgb(91, 172, 253);
|
||
|
--scrollbar-thumb: rgb(0, 88, 176);
|
||
|
}
|