---
title: "Changing the Theme"
slug: "changing-the-theme-1"
updated: 2023-12-19T18:52:59Z
published: 2023-12-19T18:52:59Z
canonical: "support.vuzix.com/changing-the-theme-1"
---
> ## Documentation Index
> Fetch the complete documentation index at: https://support.vuzix.com/llms.txt
> Use this file to discover all available pages before exploring further.
# Changing the Theme
Some developers may prefer to remove appcompat from the project, which requires they change the theme.
- If you remove the dependency on the appcompat library, you’ll need to change styles.xml to base your AppTheme on another parent theme. Change
```java
Theme.AppCompat.Light.DarkActionBar to either @android:style/Theme.Material.Light.DarkActionBar
or
@android:style/Theme.Holo.Light.DarkActionBar
```
*The Holo theme can preferable to Material on the device because button focus states are more apparent with Holo. If you do use Material, we recommend defining a custom button style that clearly changes the look of buttons when they have focus.*
- If you changed your app theme to Material, in styles.xml you need to prepend the android namespace in front of the color attributes:
```java
- @color/colorPrimary
- @color/colorPrimaryDark
- @color/colorAccent
```
- If you changed your app theme to Holo, in styles.xml you should remove the three - sub elements under