-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixes: fixes UI of infrastructure details page UI #1291 #1361
base: develop
Are you sure you want to change the base?
Changes from all commits
d23a6c4
98cb95e
b0b4261
f9a508a
27ebf7c
7920ebe
7e0c5bb
d700371
600a0e2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ const paletteColors = { | |
gray880: "#0C0C0E", | ||
gray890: "#09090B", | ||
blueGray20: "#E8F0FE", | ||
blueGray50: "#CDE2FF", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please confirm color choices with @marcelluscaio There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a print of the element where this color is being applied? For the other colors, please use the ones that already exist, and instead of creating new references, use an existing reference for that color. The idea is that here we are not aware of where the color is being called (so avoid calling them 'stroke' or There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
blueGray150: "#667085", | ||
blueGray200: "#475467", | ||
blueGray400: "#344054", | ||
|
@@ -190,6 +191,16 @@ const semanticColors = { | |
light: paletteColors.gray100, | ||
dark: paletteColors.gray850, | ||
}, | ||
stroke: { | ||
light: paletteColors.blueGray50, | ||
dark: paletteColors.gray800, | ||
}, | ||
gauge: { | ||
light: paletteColors.gray90 | ||
}, | ||
textCard:{ | ||
light:paletteColors.gray100 | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again to be confirmed with @marcelluscaio |
||
}, | ||
text: { | ||
primary: { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Styling must be consistent throughout the app, the theme should be used to apply styles to something like this