# Customize Media Attachment's ActionSheet

**URL:** https://community.sendbird.com/t/customize-media-attachments-actionsheet/1438
**Category:** Sendbird Chat UIKit
**Tags:** uikit, question, ios
**Created:** [December 14, 2020, 7:16pm UTC](https://community.sendbird.com/t/customize-media-attachments-actionsheet/1438 "2020-12-14T19:16:27Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![ramonpicoplay](https://sea2.discourse-cdn.com/flex020/user_avatar/community.sendbird.com/ramonpicoplay/32/731_2.png) [@ramonpicoplay](https://community.sendbird.com/u/ramonpicoplay)
#### Post date: [December 14, 2020, 7:16pm UTC](https://community.sendbird.com/t/customize-media-attachments-actionsheet/1438/1 "2020-12-14T19:16:27Z")

</div>

Hello!

How can I change item’s textColors for the following actionsheet?

 ![image](https://us1.discourse-cdn.com/flex020/uploads/sendbird/original/1X/82ffd827b5c7bd61434651c93b8362f0dda064a7.png)

---

<div class="post-metadata">

### Author: ![J\_sung\_0o0](https://sea2.discourse-cdn.com/flex020/user_avatar/community.sendbird.com/j_sung_0o0/32/602_2.png) [@J\_sung\_0o0](https://community.sendbird.com/u/J_sung_0o0)
#### Post date: [December 15, 2020, 9:13am UTC](https://community.sendbird.com/t/customize-media-attachments-actionsheet/1438/2 "2020-12-15T09:13:46Z")

</div>

Hi,

Please use `actionSheetTextColor` in `SBUTheme` to change the text color.

---

<div class="post-metadata">

### Author: ![ramonpicoplay](https://sea2.discourse-cdn.com/flex020/user_avatar/community.sendbird.com/ramonpicoplay/32/731_2.png) [@ramonpicoplay](https://community.sendbird.com/u/ramonpicoplay)
#### Post date: [December 15, 2020, 1:03pm UTC](https://community.sendbird.com/t/customize-media-attachments-actionsheet/1438/3 "2020-12-15T13:03:04Z")

</div>

> [@J\_sung\_0o0](#):
>
> actionSheetTextColor

Hello @J_sung_0o0, thank you for the reply!  
I’ve tried to change the properties from `SBUComponentTheme` but the changes are not reflecting. Here’s the code snippet:

```
let componentTheme = SBUComponentTheme(
        actionSheetTextColor: .red, // just for testing
        actionSheetItemColor: .red, // just for testing
        titleFont: Typography.bodyPrimary().font()
)
    
SBUTheme.componentTheme = componentTheme

```

But is not working. Is it right?
