diff --git a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx
index 1ff9ea3d9..3ce16df5a 100644
--- a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx
+++ b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx
@@ -361,15 +361,15 @@ export default function ParameterComponent({
>
{!left && data.node?.pinned &&
-
+
}
{proxy ? (
{proxy.id}}>
- {title}
+ {title}
) : (
- title
- )}
+ {title}
+ )}
{required ? " *" : ""}
diff --git a/src/frontend/src/pages/FlowPage/components/nodeToolbarComponent/index.tsx b/src/frontend/src/pages/FlowPage/components/nodeToolbarComponent/index.tsx
index c2040696d..64f004333 100644
--- a/src/frontend/src/pages/FlowPage/components/nodeToolbarComponent/index.tsx
+++ b/src/frontend/src/pages/FlowPage/components/nodeToolbarComponent/index.tsx
@@ -291,7 +291,7 @@ export default function NodeToolbarComponent({
className={cn(
"h-4 w-4 transition-all",
// TODO UPDATE THIS COLOR TO BE A VARIABLE
- pinned ? "animate-wiggle text-blue-400" : ""
+ pinned ? "animate-wiggle text-ice" : ""
)}
/>
diff --git a/src/frontend/src/style/index.css b/src/frontend/src/style/index.css
index ba0496071..fb4242661 100644
--- a/src/frontend/src/style/index.css
+++ b/src/frontend/src/style/index.css
@@ -27,6 +27,7 @@
--radius: 0.5rem;
--ring: 215 20.2% 65.1%; /* hsl(215 20% 65%) */
--round-btn-shadow: #00000063;
+ --ice: #31a3cc;
--error-background: #fef2f2;
--error-foreground: #991b1b;
@@ -67,6 +68,7 @@
.dark {
--background: 224 35% 7.5%; /* hsl(224 40% 10%) */
--foreground: 213 31% 80%; /* hsl(213 31% 91%) */
+ --ice: #60A5FA;
--muted: 223 27% 11%; /* hsl(223 27% 11%) */
--muted-foreground: 215.4 16.3% 56.9%; /* hsl(215 16% 56%) */
diff --git a/src/frontend/tailwind.config.js b/src/frontend/tailwind.config.js
index ba37b1b62..80a5416c3 100644
--- a/src/frontend/tailwind.config.js
+++ b/src/frontend/tailwind.config.js
@@ -87,6 +87,7 @@ module.exports = {
"beta-foreground": "var(--beta-foreground)",
"chat-bot-icon": "var(--chat-bot-icon)",
"chat-user-icon": "var(--chat-user-icon)",
+ "ice": "var(--ice)",
white: "var(--white)",
border: "hsl(var(--border))",