We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 928de55 + 83abf18 commit aad301aCopy full SHA for aad301a
src/theme/Button.ts
@@ -81,5 +81,21 @@ export const Button = {
81
},
82
}
83
84
+ sequence: (props: any) => {
85
+ const selectedBg = mode("brand.300", "brand.500")(props)
86
+
87
+ return {
88
+ color: mode(undefined, "white")(props),
89
+ backgroundColor: mode("brand.75", "gray.700")(props),
90
+ _active: {
91
+ color: "white",
92
+ backgroundColor: selectedBg,
93
+ },
94
+ _hover: {
95
96
97
98
+ }
99
100
101
src/theme/utils/colors.ts
@@ -9,6 +9,7 @@ export const colors = {
9
10
brand: {
11
50: "#FCF9FF",
12
+ 75: "#F2EDFF",
13
100: "#D5C6FF",
14
// 200
15
300: "#9974FF",
0 commit comments