-
Notifications
You must be signed in to change notification settings - Fork 925
chore(site): make info
gray
#14356
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
chore(site): make info
gray
#14356
Changes from all commits
000d3f4
2ffbfca
717da32
2c939d0
a8b5fec
8ef0b45
4412186
2cb6aed
8042a68
2b860b5
eedfaf3
c75e758
090a2aa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ import colors from "../tailwindColors"; | |
export default { | ||
danger: { | ||
background: colors.orange[950], | ||
outline: colors.orange[600], | ||
outline: colors.orange[500], | ||
text: colors.orange[50], | ||
fill: { | ||
solid: colors.orange[500], | ||
|
@@ -34,11 +34,11 @@ export default { | |
}, | ||
error: { | ||
background: colors.red[950], | ||
outline: colors.red[500], | ||
outline: colors.red[600], | ||
text: colors.red[50], | ||
fill: { | ||
solid: colors.red[600], | ||
outline: colors.red[600], | ||
solid: colors.red[400], | ||
outline: colors.red[400], | ||
text: colors.white, | ||
}, | ||
}, | ||
|
@@ -53,16 +53,6 @@ export default { | |
}, | ||
}, | ||
notice: { | ||
background: colors.yellow[950], | ||
outline: colors.yellow[200], | ||
text: colors.yellow[50], | ||
fill: { | ||
solid: colors.yellow[500], | ||
outline: colors.yellow[500], | ||
text: colors.white, | ||
}, | ||
}, | ||
info: { | ||
background: colors.blue[950], | ||
outline: colors.blue[400], | ||
text: colors.blue[50], | ||
|
@@ -72,6 +62,16 @@ export default { | |
text: colors.white, | ||
}, | ||
}, | ||
info: { | ||
background: colors.gray[950], | ||
outline: colors.gray[400], | ||
text: colors.gray[50], | ||
fill: { | ||
solid: colors.gray[500], | ||
outline: colors.gray[600], | ||
text: colors.white, | ||
}, | ||
}, | ||
Comment on lines
+65
to
+74
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. I know that Tailwind technically saturates their colors so the problem won't be as pronounced, but is gray on blue going to look washed out? 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. I think they look fine, and we can always tweak it going forward. |
||
success: { | ||
background: colors.green[950], | ||
outline: colors.green[500], | ||
|
@@ -108,7 +108,7 @@ export default { | |
text: colors.sky[50], | ||
fill: { | ||
solid: colors.sky[600], | ||
outline: colors.sky[600], | ||
outline: colors.sky[400], | ||
text: colors.white, | ||
}, | ||
disabled: { | ||
|
@@ -133,12 +133,12 @@ export default { | |
}, | ||
}, | ||
inactive: { | ||
background: colors.zinc[950], | ||
outline: colors.zinc[500], | ||
text: colors.zinc[50], | ||
background: colors.gray[950], | ||
outline: colors.gray[500], | ||
text: colors.gray[50], | ||
fill: { | ||
solid: colors.zinc[400], | ||
outline: colors.zinc[400], | ||
solid: colors.gray[400], | ||
outline: colors.gray[400], | ||
text: colors.white, | ||
}, | ||
}, | ||
|
Uh oh!
There was an error while loading. Please reload this page.