Skip to content

Commit e867802

Browse files
authored
mixed up theme black/white - 2nd pass (#153)
1 parent d5afa4e commit e867802

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

ui/src/Pages/LLMChat/LLMChatPage.tsx

-9
Original file line numberDiff line numberDiff line change
@@ -522,9 +522,6 @@ export const LLMChatPage: React.FC = () => {
522522
onChange={(e) =>
523523
setRawExtraLLMParams(e.target.value)
524524
}
525-
style={{
526-
background: "#393939",
527-
}}
528525
/>
529526
</Stack>
530527
</Column>
@@ -591,9 +588,6 @@ export const LLMChatPage: React.FC = () => {
591588
rows={4}
592589
value={systemMessage}
593590
onChange={(e) => setSystemMessage(e.target.value)}
594-
style={{
595-
background: "#393939",
596-
}}
597591
/>
598592
<TextArea
599593
labelText="Enter Prompt"
@@ -602,9 +596,6 @@ export const LLMChatPage: React.FC = () => {
602596
rows={4}
603597
value={prompt}
604598
onChange={(e) => setPrompt(e.target.value)}
605-
style={{
606-
background: "#393939",
607-
}}
608599
/>
609600
<div
610601
style={{

ui/src/index.scss

+1-5
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,10 @@
1111

1212
@include grid.flex-grid();
1313

14-
:root[data-carbon-theme="g10"] {
14+
:root {
1515
@include theme.theme(themes.$g10);
1616
}
1717

18-
:root[data-carbon-theme="g100"] {
19-
@include theme.theme(themes.$g100);
20-
}
21-
2218
@media (prefers-color-scheme: dark) {
2319
:root {
2420
@include theme.theme(themes.$g100);

0 commit comments

Comments
 (0)