diff --git a/frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx b/frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx index 9db83b444b96174b90690b3f58da0f7c056d9e1f..e1ee62192b3f917e0bd399755277f15af73d0332 100644 --- a/frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx @@ -79,7 +79,7 @@ export default function GenericOpenAiEmbeddingOptions({ settings }) { e.preventDefault(); setShowAdvancedControls(!showAdvancedControls); }} - className="border-none text-white hover:text-white/70 flex items-center text-sm" + className="border-none text-theme-text-primary hover:text-theme-text-secondary flex items-center text-sm" > {showAdvancedControls ? "Hide" : "Show"} advanced settings {showAdvancedControls ? ( diff --git a/frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx b/frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx index bca7547f7dd5003ef25b54a24690f93e8fa0cc9d..1fdf39650c1d9554125b8c5c47e99db430636ec5 100644 --- a/frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx @@ -58,7 +58,7 @@ export default function LMStudioEmbeddingOptions({ settings }) { e.preventDefault(); setShowAdvancedControls(!showAdvancedControls); }} - className="border-none text-white hover:text-white/70 flex items-center text-sm" + className="border-none text-theme-text-primary hover:text-theme-text-secondary flex items-center text-sm" > {showAdvancedControls ? "Hide" : "Show"} Manual Endpoint Input {showAdvancedControls ? ( diff --git a/frontend/src/components/EmbeddingSelection/LocalAiOptions/index.jsx b/frontend/src/components/EmbeddingSelection/LocalAiOptions/index.jsx index 64113b5d20087d3b13b2bdd50420773563d1e599..ce81ebe3ad6ed65d34ede5fbe2f39178d89d4963 100644 --- a/frontend/src/components/EmbeddingSelection/LocalAiOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/LocalAiOptions/index.jsx @@ -71,7 +71,7 @@ export default function LocalAiOptions({ settings }) { e.preventDefault(); setShowAdvancedControls(!showAdvancedControls); }} - className="border-none text-white hover:text-white/70 flex items-center text-sm" + className="border-none text-theme-text-primary hover:text-theme-text-secondary flex items-center text-sm" > {showAdvancedControls ? "Hide" : "Show"} advanced settings {showAdvancedControls ? ( diff --git a/frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx b/frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx index eefdd58b312e686262e6d84281d7cdb1c3066e6c..10c20b3fc4b3564c2c4f6130dac38663473f8ac2 100644 --- a/frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx +++ b/frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx @@ -61,7 +61,7 @@ export default function OllamaEmbeddingOptions({ settings }) { e.preventDefault(); setShowAdvancedControls(!showAdvancedControls); }} - className="border-none text-white hover:text-white/70 flex items-center text-sm" + className="border-none text-theme-text-primary hover:text-theme-text-secondary flex items-center text-sm" > {showAdvancedControls ? "Hide" : "Show"} Manual Endpoint Input {showAdvancedControls ? ( diff --git a/frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx b/frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx index cd60a9a2e3d8ce93da8252d1721e8b5ff84492c5..ac4db91aae5be1e5909f5c2215eb83171a96e158 100644 --- a/frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx +++ b/frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx @@ -61,7 +61,7 @@ export default function KoboldCPPOptions({ settings }) { e.preventDefault(); setShowAdvancedControls(!showAdvancedControls); }} - className="border-none text-white hover:text-white/70 flex items-center text-sm" + className="border-none text-theme-text-primary hover:text-theme-text-secondary flex items-center text-sm" > {showAdvancedControls ? "Hide" : "Show"} Manual Endpoint Input {showAdvancedControls ? ( diff --git a/frontend/src/components/LLMSelection/LMStudioOptions/index.jsx b/frontend/src/components/LLMSelection/LMStudioOptions/index.jsx index 65b36885f630bc5d36f87af1811ad6b82b8f72e2..4f8545fbebca285485a25eeddb82a77048b7bb89 100644 --- a/frontend/src/components/LLMSelection/LMStudioOptions/index.jsx +++ b/frontend/src/components/LLMSelection/LMStudioOptions/index.jsx @@ -77,7 +77,7 @@ export default function LMStudioOptions({ settings, showAlert = false }) { e.preventDefault(); setShowAdvancedControls(!showAdvancedControls); }} - className="border-none text-white hover:text-white/70 flex items-center text-sm" + className="border-none text-theme-text-primary hover:text-theme-text-secondary flex items-center text-sm" > {showAdvancedControls ? "Hide" : "Show"} Manual Endpoint Input {showAdvancedControls ? ( diff --git a/frontend/src/components/LLMSelection/LocalAiOptions/index.jsx b/frontend/src/components/LLMSelection/LocalAiOptions/index.jsx index ee4131a17ff9c3093f5a03e206b31678570a7b50..3e7b081e000843e90029ca30a5f1b1b8a41da593 100644 --- a/frontend/src/components/LLMSelection/LocalAiOptions/index.jsx +++ b/frontend/src/components/LLMSelection/LocalAiOptions/index.jsx @@ -93,7 +93,7 @@ export default function LocalAiOptions({ settings, showAlert = false }) { e.preventDefault(); setShowAdvancedControls(!showAdvancedControls); }} - className="border-none text-white hover:text-white/70 flex items-center text-sm" + className="border-none text-theme-text-primary hover:text-theme-text-secondary flex items-center text-sm" > {showAdvancedControls ? "Hide" : "Show"} advanced settings {showAdvancedControls ? ( diff --git a/frontend/src/components/LLMSelection/OllamaLLMOptions/index.jsx b/frontend/src/components/LLMSelection/OllamaLLMOptions/index.jsx index af06a06b60ad352a9ceb95e0abec63de3e79d553..41b5c3e7542c932b43267d713085e0aac6ec2d5e 100644 --- a/frontend/src/components/LLMSelection/OllamaLLMOptions/index.jsx +++ b/frontend/src/components/LLMSelection/OllamaLLMOptions/index.jsx @@ -61,7 +61,7 @@ export default function OllamaLLMOptions({ settings }) { e.preventDefault(); setShowAdvancedControls(!showAdvancedControls); }} - className="border-none text-white hover:text-white/70 flex items-center text-sm" + className="border-none text-theme-text-primary hover:text-theme-text-secondary flex items-center text-sm" > {showAdvancedControls ? "Hide" : "Show"} advanced settings {showAdvancedControls ? ( diff --git a/frontend/src/pages/OnboardingFlow/Steps/Survey/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/Survey/index.jsx index 8ac478de9645bede97ea2557673b6e43c91dcb05..5c404984f2ffe718cdd2fad43a268a4e173269a4 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/Survey/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/Survey/index.jsx @@ -150,7 +150,7 @@ export default function Survey({ setHeader, setForwardBtn, setBackBtn }) { </label> <div className="mt-2 gap-y-3 flex flex-col"> <label - className={`border-solid transition-all duration-300 w-full h-11 p-2.5 rounded-lg flex justify-start items-center gap-2.5 cursor-pointer border ${ + className={`border-solid transition-all duration-300 w-full h-11 p-2.5 rounded-lg flex justify-start items-center gap-2.5 cursor-pointer border ${ selectedOption === "job" ? "border-theme-sidebar-item-workspace-active bg-theme-bg-secondary" : "border-theme-sidebar-border"