Skip to content

Commit 528e2ee

Browse files
committed
style(many): change separator colors
INSTUI-4665
1 parent c563623 commit 528e2ee

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

packages/ui-color-picker/src/ColorPreset/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const generateComponentTheme = (theme: Theme): ColorPresetTheme => {
3838
smallSpacing: spacing?.small,
3939
selectedIndicatorBackgroundColor: colors?.contrasts?.white1010,
4040
selectedIndicatorBorderColor: colors?.contrasts?.grey125125,
41-
popoverDividerColor: colors?.contrasts?.grey1214,
41+
popoverDividerColor: colors?.contrasts?.grey3045,
4242
smallBorder: borders?.widthSmall,
4343
popoverFooterColor: colors?.contrasts?.grey1111,
4444
checkerboardBackgroundImage: `linear-gradient(45deg, ${colors?.contrasts?.grey4570} 25%, transparent 25%),

packages/ui-drawer-layout/src/DrawerLayout/DrawerTray/styles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ const generateStyle = (
8989
drawerTrayWithShadow: {
9090
label: 'drawerTray--with-shadow',
9191
...trayStyle,
92-
boxShadow: componentTheme.boxShadow
92+
boxShadow: componentTheme.boxShadow,
93+
border: 0
9394
},
9495
drawerTrayContent: {
9596
label: 'drawerTray__content',

packages/ui-drawer-layout/src/DrawerLayout/DrawerTray/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const generateComponentTheme = (theme: Theme): DrawerLayoutTrayTheme => {
3535

3636
const componentVariables: DrawerLayoutTrayTheme = {
3737
background: colors?.contrasts?.white1010,
38-
borderColor: colors?.contrasts?.grey1424,
38+
borderColor: colors?.contrasts?.grey3045,
3939
borderWidth: borders?.widthSmall,
4040
borderStyle: borders?.style,
4141
zIndex: stacking?.topmost,

packages/ui-heading/src/Heading/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const generateComponentTheme = (theme: Theme): HeadingTheme => {
7575
secondaryInverseColor: colors?.contrasts?.grey1111,
7676

7777
borderPadding: spacing?.xxxSmall,
78-
borderColor: colors?.contrasts?.grey1424,
78+
borderColor: colors?.contrasts?.grey3045,
7979
borderWidth: borders?.widthSmall,
8080
borderStyle: borders?.style,
8181

packages/ui-menu/src/Menu/MenuItemSeparator/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const generateComponentTheme = (theme: Theme): MenuSeparatorTheme => {
3434
const { colors, spacing, borders } = theme
3535

3636
const componentVariables: MenuSeparatorTheme = {
37-
background: colors?.contrasts?.grey1214,
37+
background: colors?.contrasts?.grey3045,
3838
height: borders?.widthSmall,
3939
margin: `0 ${spacing?.small}`
4040
}

packages/ui-options/src/Options/Separator/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const generateComponentTheme = (theme: Theme): OptionsSeparatorTheme => {
3434
const { borders, colors, spacing } = theme
3535

3636
const componentVariables: OptionsSeparatorTheme = {
37-
background: colors?.contrasts?.grey1214,
37+
background: colors?.contrasts?.grey3045,
3838
height: borders?.widthSmall,
3939
margin: `0 ${spacing?.small}`
4040
}

0 commit comments

Comments
 (0)