Skip to content

Commit 22e0dda

Browse files
committed
fix(Button): Reduce the contrast of key variant before it burns itself into my retinas
1 parent 3876434 commit 22e0dda

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tailwind/theme.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const theme = createTheme({
8282
page: colors.neutral["100"],
8383
default: colors.neutral["50"],
8484
invert: colors.neutral["950"],
85-
button: colors.neutral["800"],
85+
button: colors.neutral["700"],
8686
},
8787
text: {
8888
priority: colors.neutral["950"],
@@ -226,7 +226,7 @@ theme.addVariant("dark", {
226226
page: colors.neutral["950"],
227227
default: colors.neutral["900"],
228228
invert: colors.neutral["50"],
229-
button: colors.neutral["50"],
229+
button: colors.neutral["300"],
230230
},
231231
text: {
232232
priority: colors.neutral["50"],
@@ -293,7 +293,7 @@ theme.addVariant("light-with-accent", {
293293
page: colors.neutralWithAccent["100"],
294294
default: colors.neutralWithAccent["50"],
295295
invert: colors.neutralWithAccent["950"],
296-
button: colors.neutralWithAccent["800"],
296+
button: colors.neutralWithAccent["700"],
297297
},
298298
text: {
299299
priority: colors.neutralWithAccent["950"],
@@ -360,7 +360,7 @@ theme.addVariant("dark-with-accent", {
360360
page: colors.neutralWithAccent["950"],
361361
default: colors.neutralWithAccent["900"],
362362
invert: colors.neutralWithAccent["50"],
363-
button: colors.neutralWithAccent["50"],
363+
button: colors.neutralWithAccent["300"],
364364
},
365365
text: {
366366
priority: colors.neutralWithAccent["50"],

0 commit comments

Comments
 (0)