Ant Design Theme Questions

Product: PowerShell Universal
Version: 3.7.3

I noticed that with the new default theme the chips are square with the dark variant of the them and circular with the light variant. I’ve been working on a custom theme and was wondering how I can make these default to always being the square style and was also looking to do the same with buttons.

I tried inspecting the elements in my browser but the specific property or properties that cause this are not obvious to me so I was wondering if anyone knows how to do this.

Thanks

You can override the chip like this:

$Theme = @{
    light = @{
        overrides = @{ 
            MuiChip             = @{
                root = @{
                    color        = '#3c9ae8'
                    borderColor  = '#153956'
                    background   = '#111d2c'
                    borderRadius = '2px'
                }
            }
       }
    }
    dark = @{
        overrides = @{ 
            MuiChip             = @{
                root = @{
                    color        = '#3c9ae8'
                    borderColor  = '#153956'
                    background   = '#111d2c'
                    borderRadius = '2px'
                }
            }
       }
    }
}

Perfect, thank you!