add chatbot colors

This commit is contained in:
Alex Holliday
2025-02-20 11:48:09 -08:00
parent 05040f21a2
commit 15be7d723c
+14 -3
View File
@@ -276,19 +276,30 @@ const newSemanticColors = {
light: newColors.red700,
dark: newColors.red700,
},
primaryText: {
textPrimary: {
light: "#34D399",
dark: "#34D399",
},
primaryTextBackground: {
textPrimaryBackground: {
light: "#094434",
dark: "#094434",
},
secondaryText: {
textSecondary: {
light: "#22946C",
dark: "#22946C",
},
},
chatbot: {
background: {
light: "#112B2B",
dark: "#112B2B",
},
textAccent: {
light: "#C084FC",
dark: "#C084FC",
},
},
};
export { typographyLevels, semanticColors as colors, newSemanticColors };