@northlight/ui 2.34.3 → 2.35.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2108,6 +2108,24 @@
2108
2108
  }
2109
2109
  }
2110
2110
  }),
2111
+ light: ({ theme: { colors: color }, sx }) => ({
2112
+ container: ramda.merge({
2113
+ bgColor: color["base-alt"]
2114
+ }, sx),
2115
+ button: {
2116
+ bgColor: "mono.transparent",
2117
+ _hover: {
2118
+ bgColor: color.background.button["ghost-hover"]
2119
+ },
2120
+ _checked: {
2121
+ color: color.text["flip-button"].default,
2122
+ bgColor: "bg.base",
2123
+ _hover: {
2124
+ bgColor: "bg.base"
2125
+ }
2126
+ }
2127
+ }
2128
+ }),
2111
2129
  ai: ({ theme: { colors: color }, sx }) => ({
2112
2130
  container: ramda.merge({
2113
2131
  bgColor: color.background["flip-button"]["default-deselected-brand"]