Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

style: update border radius and add orange datatype color #4522

Merged
merged 4 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/frontend/src/style/applies.css
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@
}

.last-output-border {
@apply rounded-b-xl;
@apply rounded-b-[12.5px];
}

.toolbar-wrapper {
Expand Down
7 changes: 7 additions & 0 deletions src/frontend/src/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@
--datatype-indigo: 243.4 75.4% 58.6%;
--datatype-indigo-foreground: 226.5 100% 93.9%;

--datatype-orange: 20.5 90.2% 48.2%;
--datatype-orange-foreground: 34.3 100% 91.8%;

--node-ring: 240 6% 90%;

--neon-fuschia: 340 100% 60%; /* hsl(340, 100%, 60%) */
Expand Down Expand Up @@ -290,6 +293,10 @@

--datatype-indigo: 229.7 93.5% 81.8%;
--datatype-indigo-foreground: 243.4 75.4% 58.6%;

--datatype-orange: 20.5 90.2% 48.2%;
--datatype-orange-foreground: 30.7 97.2% 72.4%;

--node-ring: 240 6% 90%;
}
}
1 change: 1 addition & 0 deletions src/frontend/src/utils/styleUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@ export const nodeColorsName: { [char: string]: string } = {
Agent: "purple",
Tool: "cyan",
BaseChatMemory: "cyan",
BaseChatMessageHistory: "orange",
};

export const SIDEBAR_CATEGORIES = [
Expand Down
Loading